summaryrefslogtreecommitdiff
path: root/src/web/docs/layout.pug
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/docs/layout.pug')
-rw-r--r--src/web/docs/layout.pug16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/web/docs/layout.pug b/src/web/docs/layout.pug
new file mode 100644
index 0000000000..68ca9eb62d
--- /dev/null
+++ b/src/web/docs/layout.pug
@@ -0,0 +1,16 @@
+doctype html
+
+mixin i18n(xs)
+ each text, lang in xs
+ span(class=`i18n ${lang}`)!= text
+
+html
+ head
+ meta(charset="UTF-8")
+ title
+ block title
+ block meta
+
+ body
+ main
+ block main