diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2018-12-17 19:19:20 +0100 |
|---|---|---|
| committer | Yehonal <yehonal.azeroth@gmail.com> | 2018-12-17 21:01:20 +0100 |
| commit | 4e1a3540b9e9bcf8c95e2d61e674c7b9711dd99a (patch) | |
| tree | 3e671c486e329d2b67312cf7c6a4d81bff5c07ed /_layouts | |
| parent | 2e2c8eefe545b70e0d7c5f1286477a083aff1f06 (diff) | |
| download | wiki-4e1a3540b9e9bcf8c95e2d61e674c7b9711dd99a.tar.gz wiki-4e1a3540b9e9bcf8c95e2d61e674c7b9711dd99a.tar.bz2 wiki-4e1a3540b9e9bcf8c95e2d61e674c7b9711dd99a.zip | |
v2.1.0 with blog feature implemented
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/git-wiki-bs-lux.html | 25 | ||||
| -rw-r--r-- | _layouts/git-wiki-bs-united.html | 25 | ||||
| -rw-r--r-- | _layouts/git-wiki-default.html | 6 |
3 files changed, 31 insertions, 25 deletions
diff --git a/_layouts/git-wiki-bs-lux.html b/_layouts/git-wiki-bs-lux.html index 6d40fb7..a644058 100644 --- a/_layouts/git-wiki-bs-lux.html +++ b/_layouts/git-wiki-bs-lux.html @@ -1,7 +1,10 @@ -<!-- - This layout uses bootstrap with lux theme ---> -{% include gw_defines/defines.html %} +{% comment %} +# +# This layout uses bootstrap with lux theme +# +{% endcomment %} + +{% include git-wiki/defines/defines.html %} <!doctype html> <html> @@ -11,9 +14,9 @@ {% include {{ site.inc_before_head }} %} {% endif %} - {% include gw_head/meta.html %} - {% include gw_head/scripts.html %} - {% include gw_head/styles.html %} + {% include git-wiki/sections/head/meta.html %} + {% include git-wiki/sections/head/scripts.html %} + {% include git-wiki/sections/head/styles.html %} <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/lux/bootstrap.min.css"> @@ -26,10 +29,10 @@ <div class="wrapper"> <div class="row"> <div class="col-lg-3"> - {% include gw_header/header.html %} + {% include git-wiki/sections/header/header.html %} </div> <div class="col-lg-9"> - {% include gw_tools/tools.html %} + {% include git-wiki/sections/tools/tools.html %} {% if site.inc_before_toc %} {% include {{ site.inc_before_toc }} %} @@ -56,12 +59,12 @@ </div> <div class="row"> <div class="col"> - {% include gw_footer/footer.html %} + {% include git-wiki/sections/footer/footer.html %} </div> </div> </div> - {% include gw_tail/tail.html %} + {% include git-wiki/sections/tail/tail.html %} </body> </html> diff --git a/_layouts/git-wiki-bs-united.html b/_layouts/git-wiki-bs-united.html index 404cee9..8a730d2 100644 --- a/_layouts/git-wiki-bs-united.html +++ b/_layouts/git-wiki-bs-united.html @@ -1,7 +1,10 @@ -<!-- - This layout uses bootstrap with united theme ---> -{% include gw_defines/defines.html %} +{% comment %} +# +# This layout uses bootstrap with united theme +# +{% endcomment %} + +{% include git-wiki/defines/defines.html %} <!doctype html> <html> @@ -11,9 +14,9 @@ {% include {{ site.inc_before_head }} %} {% endif %} - {% include gw_head/meta.html %} - {% include gw_head/scripts.html %} - {% include gw_head/styles.html %} + {% include git-wiki/sections/head/meta.html %} + {% include git-wiki/sections/head/scripts.html %} + {% include git-wiki/sections/head/styles.html %} <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/united/bootstrap.min.css"> @@ -26,7 +29,7 @@ <div class="wrapper"> <div class="row"> <div class="col-lg-9"> - {% include gw_tools/tools.html %} + {% include git-wiki/sections/tools/tools.html %} {% if site.inc_before_toc %} {% include {{ site.inc_before_toc }} %} @@ -51,17 +54,17 @@ {% endif %} </div> <div class="col-lg-3"> - {% include gw_header/header.html %} + {% include git-wiki/sections/header/header.html %} </div> </div> <div class="row"> <div class="col"> - {% include gw_footer/footer.html %} + {% include git-wiki/sections/footer/footer.html %} </div> </div> </div> - {% include gw_tail/tail.html %} + {% include git-wiki/sections/tail/tail.html %} </body> </html> diff --git a/_layouts/git-wiki-default.html b/_layouts/git-wiki-default.html index 8bb038b..bd81329 100644 --- a/_layouts/git-wiki-default.html +++ b/_layouts/git-wiki-default.html @@ -1,9 +1,9 @@ -{% include gw_defines/defines.html %} +{% include git-wiki/defines/defines.html %} <!doctype html> <html> -{% include gw_head/head.html %} +{% include git-wiki/sections/head/head.html %} -{% include gw_content/body.html %} +{% include git-wiki/sections/content/body.html %} </html>
\ No newline at end of file |
