diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2019-02-19 10:31:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-19 10:31:18 +0000 |
| commit | 7c2a37c1d3526c97826f8c4c35195e620fbffb5f (patch) | |
| tree | a3735d691aa7c9fcc2f8d3c21cf83a5a524bfac2 /_layouts/git-wiki-bs-github.html | |
| parent | 99e8500f5073831e7828ff2c0667d149f60e7655 (diff) | |
| parent | a5be1d0e298f07ccd1830d5c254764f0346dd0b3 (diff) | |
| download | wiki-7c2a37c1d3526c97826f8c4c35195e620fbffb5f.tar.gz wiki-7c2a37c1d3526c97826f8c4c35195e620fbffb5f.tar.bz2 wiki-7c2a37c1d3526c97826f8c4c35195e620fbffb5f.zip | |
Merge pull request #3 from Drassil/master
upgraded to 2.3.1
Diffstat (limited to '_layouts/git-wiki-bs-github.html')
| -rw-r--r-- | _layouts/git-wiki-bs-github.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/_layouts/git-wiki-bs-github.html b/_layouts/git-wiki-bs-github.html new file mode 100644 index 0000000..8237c4b --- /dev/null +++ b/_layouts/git-wiki-bs-github.html @@ -0,0 +1,73 @@ +{% comment %} +# +# This layout uses bootstrap with united theme +# +{% endcomment %} + +{% include git-wiki/defines/defines.html %} + +<!doctype html> +<html> + +<head> + {% if site.inc_before_head %} + {% include {{ site.inc_before_head }} %} + {% endif %} + + {% 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"> + <link rel="stylesheet" href="{{ '/assets/css/github.css?v=' | append: site.github.build_revision | relative_url }}"> + + {% if site.inc_after_head %} + {% include {{ site.inc_after_head }} %} + {% endif %} +</head> + +<body> + <div class="wrapper"> + <div class="row"> + <div class="col-lg-9"> + <div class="git-wiki-page"> + {% include git-wiki/sections/tools/tools.html %} + + {% if site.inc_before_toc %} + {% include {{ site.inc_before_toc }} %} + {% endif %} + + <div id="git-wiki-toc"></div> + + {% if site.inc_after_toc %} + {% include {{ site.inc_after_toc }} %} + {% endif %} + + {% if site.inc_before_content %} + {% include {{ site.inc_before_content }} %} + {% endif %} + + <div id="git-wiki-content"> + {{ content }} + </div> + + {% if site.inc_after_content %} + {% include {{ site.inc_after_content }} %} + {% endif %} + </div> + </div> + <div class="col-lg-3"> + {% include git-wiki/sections/header/header.html %} + </div> + </div> + <div class="row"> + <div class="col"> + {% include git-wiki/sections/footer/footer.html %} + </div> + </div> + </div> + + {% include git-wiki/sections/tail/tail.html %} +</body> + +</html>
\ No newline at end of file |
