misskey/src/web/docs/layout.pug

39 lines
989 B
Plaintext
Raw Normal View History

2017-12-14 07:23:45 -08:00
doctype html
2017-12-14 13:41:57 -08:00
html(lang= lang)
2017-12-14 07:23:45 -08:00
head
meta(charset="UTF-8")
2017-12-15 11:10:05 -08:00
meta(name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no")
2017-12-14 07:23:45 -08:00
title
2017-12-15 07:19:10 -08:00
| #{title} | Misskey Docs
2017-12-16 08:41:22 -08:00
link(rel="stylesheet" href="/assets/style.css")
2017-12-14 07:23:45 -08:00
block meta
body
2017-12-14 13:41:57 -08:00
nav
ul
each doc in common.docs
2017-12-16 11:05:33 -08:00
li: a(href=`/${lang}/${doc.name}`)= doc.title[lang] || doc.title['ja']
2017-12-14 13:41:57 -08:00
section
h2 API
ul
li Entities
ul
each entity in common.entities
2017-12-16 11:05:33 -08:00
li: a(href=`/${lang}/api/entities/${common.kebab(entity)}`)= entity
2017-12-14 13:41:57 -08:00
li Endpoints
ul
each endpoint in common.endpoints
2017-12-16 11:05:33 -08:00
li: a(href=`/${lang}/api/endpoints/${common.kebab(endpoint)}`)= endpoint
2017-12-14 07:23:45 -08:00
main
2017-12-16 11:02:30 -08:00
article
block main
if content
| !{content}
footer
p
= common.i18n[lang]['docs']['edit-this-page-on-github']
a(href=src target="_blank")= common.i18n[lang]['docs']['edit-this-page-on-github-link']
2017-12-16 11:31:24 -08:00
small= common.copyright