From 4a8156e08a5e3ffe540f56ecb894b951dd9b7c84 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Sun, 16 Dec 2018 15:54:48 +0100 Subject: Git-Wiki 2.0 --- _layouts/default.html | 146 ----------------------------------------- _layouts/git-wiki-default.html | 9 +++ _layouts/page.html | 5 -- 3 files changed, 9 insertions(+), 151 deletions(-) delete mode 100644 _layouts/default.html create mode 100644 _layouts/git-wiki-default.html delete mode 100644 _layouts/page.html (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index 4f08612..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - {% assign version = "1.0.5" %} - {% capture lchar %}{{page.url | slice: -1, 1}}{% endcapture %} - {% capture url %}{% if lchar == "/" %}{{page.url}}index.html{% else %}{{ page.url | default: 'index.html' }}{% endif %}{% endcapture %} - - - {{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }} - - - - - - - {% if site.custom_head %} - {% include head.html %} - {% endif %} - - - - - -
-
- -

{{ site.title | default: site.github.repository_name }}

-
-

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

- - {% if site.github.is_user_page %} -

View My GitHub Profile

- {% endif %} - - {% if site.show_downloads %} - - {% endif %} - - {% if site.custom_sidebar %} - {% include sidebar.html %} - {% endif %} - -
-
-
- {{page.relative_path}} - {% if site.use_github_wiki %} - Edit - History - Source - {% else %} - Edit - {% if site.use_prose_io %} - Edit with Prose.io - {% endif %} - History - Source - {% endif %} - - {% if site.google_cse_token %} - - - {% else %} -
- - {% if site.use_github_wiki %} - - {% else %} - - - {% endif %} - -
- {% endif %} -
- -
- -
- {{ content }} -
- - {% if site.comments %} - {% include comments.html %} - {% endif %} - -
- -
- - - - {% if site.google_analytics %} - - {% endif %} - - - - diff --git a/_layouts/git-wiki-default.html b/_layouts/git-wiki-default.html new file mode 100644 index 0000000..8bb038b --- /dev/null +++ b/_layouts/git-wiki-default.html @@ -0,0 +1,9 @@ +{% include gw_defines/defines.html %} + + + +{% include gw_head/head.html %} + +{% include gw_content/body.html %} + + \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html deleted file mode 100644 index 5e71126..0000000 --- a/_layouts/page.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: default ---- - -{{ content }} -- cgit