forked from FoundKeyGang/FoundKey
✌️
This commit is contained in:
parent
da279f9e50
commit
11842366bc
1 changed files with 3 additions and 4 deletions
|
@ -8,24 +8,23 @@ html(lang= lang)
|
||||||
| #{title} | Misskey Docs
|
| #{title} | Misskey Docs
|
||||||
link(rel="stylesheet" href="/assets/style.css")
|
link(rel="stylesheet" href="/assets/style.css")
|
||||||
block meta
|
block meta
|
||||||
base(href=`/${lang}/`)
|
|
||||||
|
|
||||||
body
|
body
|
||||||
nav
|
nav
|
||||||
ul
|
ul
|
||||||
each doc in common.docs
|
each doc in common.docs
|
||||||
li: a(href=`./${doc.name}`)= doc.title[lang] || doc.title['ja']
|
li: a(href=`/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja']
|
||||||
section
|
section
|
||||||
h2 API
|
h2 API
|
||||||
ul
|
ul
|
||||||
li Entities
|
li Entities
|
||||||
ul
|
ul
|
||||||
each entity in common.entities
|
each entity in common.entities
|
||||||
li: a(href=`./api/entities/${common.kebab(entity)}`)= entity
|
li: a(href=`/${lang}/api/entities/${common.kebab(entity)}`)= entity
|
||||||
li Endpoints
|
li Endpoints
|
||||||
ul
|
ul
|
||||||
each endpoint in common.endpoints
|
each endpoint in common.endpoints
|
||||||
li: a(href=`./api/endpoints/${common.kebab(endpoint)}`)= endpoint
|
li: a(href=`/${lang}/api/endpoints/${common.kebab(endpoint)}`)= endpoint
|
||||||
main
|
main
|
||||||
article
|
article
|
||||||
block main
|
block main
|
||||||
|
|
Loading…
Reference in a new issue