1+ {% comment %}
2+ #
3+ # This layout uses bootstrap with united theme
4+ #
5+ {% endcomment %}
6+
7+ {% include git-wiki/defines/defines.html %}
8+
9+ <!doctype html>
10+ < html >
11+
12+ < head >
13+ {% if site.inc_before_head %}
14+ {% include {{ site.inc_before_head }} %}
15+ {% endif %}
16+
17+ {% include git-wiki/sections/head/meta.html %}
18+ {% include git-wiki/sections/head/scripts.html %}
19+ {% include git-wiki/sections/head/styles.html %}
20+
21+ < link rel ="stylesheet " href ="https://stackpath.bootstrapcdn.com/bootswatch/4.1.3/united/bootstrap.min.css ">
22+ < link rel ="stylesheet " href ="{{ '/assets/css/github.css?v=' | append: site.github.build_revision | relative_url }} ">
23+
24+ {% if site.inc_after_head %}
25+ {% include {{ site.inc_after_head }} %}
26+ {% endif %}
27+ </ head >
28+
29+ < body >
30+ < div class ="wrapper ">
31+ < div class ="row ">
32+ < div class ="col-lg-9 ">
33+ < div class ="git-wiki-page ">
34+ {% include git-wiki/sections/tools/tools.html %}
35+
36+ {% if site.inc_before_toc %}
37+ {% include {{ site.inc_before_toc }} %}
38+ {% endif %}
39+
40+ < div id ="git-wiki-toc "> </ div >
41+
42+ {% if site.inc_after_toc %}
43+ {% include {{ site.inc_after_toc }} %}
44+ {% endif %}
45+
46+ {% if site.inc_before_content %}
47+ {% include {{ site.inc_before_content }} %}
48+ {% endif %}
49+
50+ < div id ="git-wiki-content ">
51+ {{ content }}
52+ </ div >
53+
54+ {% if site.inc_after_content %}
55+ {% include {{ site.inc_after_content }} %}
56+ {% endif %}
57+ </ div >
58+ </ div >
59+ < div class ="col-lg-3 ">
60+ {% include git-wiki/sections/header/header.html %}
61+ </ div >
62+ </ div >
63+ < div class ="row ">
64+ < div class ="col ">
65+ {% include git-wiki/sections/footer/footer.html %}
66+ </ div >
67+ </ div >
68+ </ div >
69+
70+ {% include git-wiki/sections/tail/tail.html %}
71+ </ body >
72+
73+ </ html >
0 commit comments