From 3c62a936378e490e99c2ac8955797464216b1691 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 18 Feb 2018 22:51:57 +0100 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- _layouts/default.html | 31 +++++++++++++++++++++++++++++++ _layouts/post.html | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..8db38f6 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,31 @@ + + + + + {% if page.title %}{{ site.title }} - {% t page.title %}{% else %}{{ site.title }}{% endif %} + + + + + + + + + + + + + + + + {% include header.html %} + +
+
+ {{ content }} +
+
+ + {% include footer.html %} + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..71ffb82 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,37 @@ +--- +layout: default +--- + + +

+ {% t page.title %}{% if page.subtitle %}. {{ page.subtitle }}{% endif %} +

+ + + +{{ content }} + +
+

+ {% t blog.notice %} + Creative Commons BY-ND 4.0. +

+

+ {% t blog.rss %} + + {% if site.lang == "ca" %} + feed de RSS. + {% else %} + RSS Feed. + {% endif %} +

+
-- cgit v1.2.3