summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2019-08-07 12:45:06 +0000
committerYehonal <yehonal.azeroth@gmail.com>2019-08-07 12:45:06 +0000
commitcb144f4ff77cceb7c621d067c8327e5dff32a36b (patch)
tree6e46ac20ea7d13707ce0db6ee074c24baea42a80 /_layouts
parent1cec6c859b09720fc09d3ccfd3b97afc573539c1 (diff)
downloadwiki-cb144f4ff77cceb7c621d067c8327e5dff32a36b.tar.gz
wiki-cb144f4ff77cceb7c621d067c8327e5dff32a36b.tar.bz2
wiki-cb144f4ff77cceb7c621d067c8327e5dff32a36b.zip
changes for #103
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/azerothcore.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/_layouts/azerothcore.html b/_layouts/azerothcore.html
new file mode 100644
index 0000000..3246d64
--- /dev/null
+++ b/_layouts/azerothcore.html
@@ -0,0 +1,72 @@
+{% 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">
+
+ {% if site.inc_after_head %}
+ {% include {{ site.inc_after_head }} %}
+ {% endif %}
+</head>
+
+<body>
+ <div class="wrapper">
+ <div class="row">
+ <div class="col-lg-2">
+ {% include git-wiki/sections/header/header.html %}
+ </div>
+ <div class="col-lg-10">
+ <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>
+ <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