simpkey/src/views/_base.pug

32 lines
937 B
Plaintext
Raw Normal View History

2020-07-23 21:10:50 +02:00
include _components
2020-07-23 18:14:28 +02:00
html
head
meta(charset="UTF-8")
2020-07-23 21:10:54 +02:00
link(href='https://unpkg.com/sanitize.css' rel='stylesheet')
2020-07-23 18:14:28 +02:00
meta(name="viewport", content="width=device-width, initial-scale=1.0")
block meta
title= title
2020-07-24 16:08:43 +02:00
style.
body {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
2020-07-24 16:30:44 +02:00
padding: 16px;
2020-07-24 16:08:43 +02:00
}
2020-07-23 18:14:28 +02:00
body
header
h1: a(href="/") Simpkey
block header
main
block content
footer
hr
div
a(href="/privacy-policy") プライバシーポリシー
| ・
a(href="/terms") 利用規約
2020-07-24 16:30:44 +02:00
| ・
a(href="/help") ヘルプ
2020-07-23 18:14:28 +02:00
p (C)2020 Xeltica -
2020-07-24 16:08:43 +02:00
a(href="/about") version #{version}
2020-07-23 18:14:28 +02:00
block footer