Module:CareerList/config: Difference between revisions

From Porn Base Central
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
return {
return {
bromo = {
["site1"] = {
label = 'Website',
name = "Название сайта 1",
type = "Studio", -- тип сайта: "Website" или "Studio"
url = 'http://example1.com/%$1'
url = "http://example.com/$1" -- шаблон ссылки с заменяемым параметром $1
},
},
belami = {
["site2"] = {
label = 'Studio',
name = "Название сайта 2",
url = 'http://example2.com/%$1'
type = "Website",
url = "http://example.com/$1"
}
},
-- Добавьте дополнительные сайты здесь
}
}

Revision as of 22:28, 12 March 2023

Documentation for this module may be created at Module:CareerList/config/doc

return {
    ["site1"] = {
        name = "Название сайта 1",
        type = "Studio", -- тип сайта: "Website" или "Studio"
        url = "http://example.com/$1" -- шаблон ссылки с заменяемым параметром $1
    },
    ["site2"] = {
        name = "Название сайта 2",
        type = "Website",
        url = "http://example.com/$1"
    },
    -- Добавьте дополнительные сайты здесь
}