From 7b1cdbe4b08c1621364805d26b26194f3a1d3c92 Mon Sep 17 00:00:00 2001 From: Vincenzo Tilotta Date: Mon, 6 Jan 2020 08:51:37 +0100 Subject: Added "Material Design Lite" theme (#65) * Added "Material Design Lite" theme * material theme: fix footer --- _layouts/git-wiki-material.html | 163 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 _layouts/git-wiki-material.html diff --git a/_layouts/git-wiki-material.html b/_layouts/git-wiki-material.html new file mode 100644 index 0000000..e3e5cd6 --- /dev/null +++ b/_layouts/git-wiki-material.html @@ -0,0 +1,163 @@ +{% comment %} +# +# This layout uses Material Design Lite +# ------------------------------------- +# tAiLot - tailot@gmail.com +# ------------------------------------- +# +{% endcomment %} +{% include git-wiki/defines/defines.html %} + + + + + {% if site.inc_before_head %} + {% include {{ site.inc_before_head }} %} + {% endif %} + + {% include git-wiki/sections/head/meta.html %} + + + + + + + {% if site.inc_after_head %} + {% include {{ site.inc_after_head }} %} + {% endif %} + + + + +
+
+
+ + +
+
+
+ + {% if site.logo_url %} + logo + {% endif %} +

{{ site.description | default: site.github.project_tagline }}

+ {% if site.show_wiki_pages %} + {% include git-wiki/components/lists/page-list.html %} + {% endif %} + + {% if site.blog_feature and site.show_wiki_posts %} + {% include git-wiki/components/lists/post-list.html %} + {% endif %} + + {% if site.show_downloads %} + + + + {% endif %} + + {% if site.inc_after_header %} + {% include {{ site.inc_after_header }} %} + {% endif %} +
+
+
+
+
+
{{content}}
+
+
+ +
+ +
+ + \ No newline at end of file -- cgit