UESPWiki:AppManifest
The UESPWiki – Your source for The Elder Scrolls since 1995
This page is used to define the mobile app home page layout and styles. Do not edit unless you understand the format.
See UESPWiki:AppManifest/Documentation for more information.
{ // TODO: sample manifest
// homepage manifest
"banner" : {
// since "logoURL" is missing, app will use app's long name instead
//"logo" : "https://images.starfieldwiki.net/1/19/Sfwiki_wordmark_logo_white.svg",
"background" : "https://dev.uesp.net/w/images/1/12/ON-concept-Vvardenfell.jpg"
},
"homefeed" : [
{ // featured article
"type" : "card_featured_article",
"title" : "Featured Article",
"content" : [
// dynamic contents go here
]
},
{ // featured image
"type" : "card_featured_image",
"title" : "Featured Image",
"content" : [
// dynamic contents go here
]
},
{ // trivia box segment
"type" : "trivia_box",
"title" : "Did You Know?",
"content" : [
// dynamic contents go here
]
},
{ // news section
"type": "card_news",
"title": "News",
"sections" : [ "Currently Featured News", "Past News" ],
"content" : [
// dynamic contents go here
]
},
{ // quicklinks segment
"type" : "quick_links",
"content" : [
{ "Lore" : "https://en.uesp.net/wiki/Lore:Main_Page" },
{ "General" : "https://en.uesp.net/wiki/General:Main_Page" }
]
}
]
}
Page/JSON Format OK!