From f5a00be4742caccbc6f087c0b4c96d99970cab1f Mon Sep 17 00:00:00 2001 From: Jan Krutisch Date: Tue, 25 Oct 2022 15:37:30 +0200 Subject: [PATCH] Add plausible --- _includes/head.html | 25 +++++++++++++++++++++++++ _layouts/default.html | 17 +++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 _includes/head.html create mode 100644 _layouts/default.html diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..b3746e9 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,25 @@ + + + + + + + {% if page.title %}{{ page.title | escape }} - {{ site.title | escape }} + {% else %}{{ site.title | escape }}{% endif %} + + + + + + + + + + + + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..78daedc --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,17 @@ + + + + +{% include head.html %} + + + {% include navbar.html %} + + {{ content }} + + {% include footer.html %} + + {% include scripts.html %} + + + \ No newline at end of file