summaryrefslogtreecommitdiff
path: root/docs/_layouts
diff options
context:
space:
mode:
authorTobias Bernard <tbernard@gnome.org>2019-12-11 17:01:46 +0100
committerLennart Poettering <lennart@poettering.net>2019-12-11 17:04:20 +0100
commitb41a3f66c97e3d861faed04b727daf929383b827 (patch)
tree34c10f34c0c1a91673623c07153701918bfe80a1 /docs/_layouts
parent2e3fa22ef3de327cad6af7bdfc44655201c70ebe (diff)
downloadsystemd-b41a3f66c97e3d861faed04b727daf929383b827.tar.gz
docs: make it pretty
Add custom Jekyll theme, logo, webfont and .gitignore FIXME: the markdown files have some H1 headers which need to be replaced with H2
Diffstat (limited to 'docs/_layouts')
-rw-r--r--docs/_layouts/default.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
new file mode 100644
index 0000000000..672aa0cd58
--- /dev/null
+++ b/docs/_layouts/default.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+
+ {% include head.html %}
+
+ <body>
+
+ {% include header.html %}
+
+ <div class="container">
+ {{ content }}
+ </div>
+
+ {% include footer.html %}
+
+ </body>
+
+</html>