summaryrefslogtreecommitdiff
path: root/src/web/docs/layout.pug
blob: bc9710d7c6c597db50d0aafeee653b8199d3da18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
doctype html

html(lang= lang)
	head
		meta(charset="UTF-8")
		meta(name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no")
		title
			| #{title} | Misskey Docs
		link(rel="stylesheet" href="/assets/style.css")
		block meta
		base(href=`/${lang}/`)

	body
		nav
			ul
				each doc in common.docs
					li: a(href=`./${doc.name}`)= doc.title[lang] || doc.title['ja']
			section
				h2 API
				ul
					li Entities
						ul
							each entity in common.entities
								li: a(href=`./api/entities/${common.kebab(entity)}`)= entity
					li Endpoints
						ul
							each endpoint in common.endpoints
								li: a(href=`./api/endpoints/${common.kebab(endpoint)}`)= endpoint
		main
			block main
			if content
				| !{content}