summaryrefslogtreecommitdiff
path: root/_includes/git-wiki/sections
diff options
context:
space:
mode:
Diffstat (limited to '_includes/git-wiki/sections')
-rw-r--r--_includes/git-wiki/sections/content/body.html5
-rw-r--r--_includes/git-wiki/sections/content/content.html20
-rw-r--r--_includes/git-wiki/sections/content/wrapper.html5
-rw-r--r--_includes/git-wiki/sections/footer/footer.html11
-rw-r--r--_includes/git-wiki/sections/head/head.html13
-rw-r--r--_includes/git-wiki/sections/head/meta.html13
-rw-r--r--_includes/git-wiki/sections/head/scripts.html14
-rw-r--r--_includes/git-wiki/sections/head/styles.html9
-rw-r--r--_includes/git-wiki/sections/header/header.html57
-rw-r--r--_includes/git-wiki/sections/tail/tail.html35
-rw-r--r--_includes/git-wiki/sections/tools/tools.html13
11 files changed, 0 insertions, 195 deletions
diff --git a/_includes/git-wiki/sections/content/body.html b/_includes/git-wiki/sections/content/body.html
deleted file mode 100644
index 419eeaf..0000000
--- a/_includes/git-wiki/sections/content/body.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<body>
- {% include git-wiki/sections/content/wrapper.html %}
-
- {% include git-wiki/sections/tail/tail.html %}
-</body> \ No newline at end of file
diff --git a/_includes/git-wiki/sections/content/content.html b/_includes/git-wiki/sections/content/content.html
deleted file mode 100644
index b356968..0000000
--- a/_includes/git-wiki/sections/content/content.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<div class="git-wiki-page">
- <section>
-
- {% include git-wiki/sections/tools/tools.html %}
-
- {% include git-wiki/components/toc/toc.html %}
-
- {% 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 %}
- </section>
-</div> \ No newline at end of file
diff --git a/_includes/git-wiki/sections/content/wrapper.html b/_includes/git-wiki/sections/content/wrapper.html
deleted file mode 100644
index eab823f..0000000
--- a/_includes/git-wiki/sections/content/wrapper.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<div class="wrapper">
- {% include git-wiki/sections/header/header.html %}
- {% include git-wiki/sections/content/content.html %}
- {% include git-wiki/sections/footer/footer.html %}
-</div> \ No newline at end of file
diff --git a/_includes/git-wiki/sections/footer/footer.html b/_includes/git-wiki/sections/footer/footer.html
deleted file mode 100644
index f49703b..0000000
--- a/_includes/git-wiki/sections/footer/footer.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<footer>
- {% if site.inc_before_footer %}
- {% include {{ site.inc_before_footer }} %}
- {% endif %}
-
- {% include git-wiki/components/copyrights/copyrights.html %}
-
- {% if site.inc_after_footer %}
- {% include {{ site.inc_after_footer }} %}
- {% endif %}
-</footer> \ No newline at end of file
diff --git a/_includes/git-wiki/sections/head/head.html b/_includes/git-wiki/sections/head/head.html
deleted file mode 100644
index dab9a86..0000000
--- a/_includes/git-wiki/sections/head/head.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<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 %}
-
- {% if site.inc_after_head %}
- {% include {{ site.inc_after_head }} %}
- {% endif %}
-</head> \ No newline at end of file
diff --git a/_includes/git-wiki/sections/head/meta.html b/_includes/git-wiki/sections/head/meta.html
deleted file mode 100644
index bfae3da..0000000
--- a/_includes/git-wiki/sections/head/meta.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% if site.inc_before_meta %}
-{% include {{ site.inc_before_meta }} %}
-{% endif %}
-
-<meta charset="utf-8">
-<meta http-equiv="X-UA-Compatible" content="chrome=1">
-<meta name="viewport" content="width=device-width">
-
-{% seo %}
-
-{% if site.inc_after_meta %}
-{% include {{ site.inc_after_meta }} %}
-{% endif %} \ No newline at end of file
diff --git a/_includes/git-wiki/sections/head/scripts.html b/_includes/git-wiki/sections/head/scripts.html
deleted file mode 100644
index 9497626..0000000
--- a/_includes/git-wiki/sections/head/scripts.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{% if site.inc_before_scripts %}
-{% include {{ site.inc_before_scripts }} %}
-{% endif %}
-
-<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
- crossorigin="anonymous"></script>
-<script src="{{ '/assets/js/checkLinks.js' | relative_url }}"></script>
-<!--[if lt IE 9]>
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
-
-{% if site.inc_after_scripts %}
-{% include {{ site.inc_after_scripts }} %}
-{% endif %} \ No newline at end of file
diff --git a/_includes/git-wiki/sections/head/styles.html b/_includes/git-wiki/sections/head/styles.html
deleted file mode 100644
index 3bb7ecc..0000000
--- a/_includes/git-wiki/sections/head/styles.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% if site.inc_before_styles %}
-{% include {{ site.inc_before_styles }} %}
-{% endif %}
-
-<link rel="stylesheet" href="{{ '/assets/css/git-wiki-style.css?v=' | append: site.github.build_revision | relative_url }}">
-
-{% if site.inc_after_styles %}
-{% include {{ site.inc_after_styles }} %}
-{% endif %} \ No newline at end of file
diff --git a/_includes/git-wiki/sections/header/header.html b/_includes/git-wiki/sections/header/header.html
deleted file mode 100644
index ffbea44..0000000
--- a/_includes/git-wiki/sections/header/header.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<div class=" w3-xlarge w3-hide-large" id="git-wiki-mobile-header">
- <button class="w3-button w3-teal" onclick="sidebar_toggle()">&#9776;</button>
- <a href="{{ '/' | relative_url }}">
- {% if site.logo_url %}
- <img src="{{ site.logo_url | relative_url }}" width="20px">
- {% endif %}
- {{ site.title | escape }}
- </a>
-</div>
-<header class="w3-sidebar w3-bar-block w3-collapse" id="git-wiki-sidebar">
- <div>
- <button class="w3-bar-item w3-button w3-large w3-hide-large" onclick="sidebar_toggle()">Close &times;</button>
- {% if site.inc_before_header %}
- {% include {{ site.inc_before_header }} %}
- {% endif %}
-
- <div class="w3-hide-medium w3-hide-small">
- {% if site.logo_url %}
- {% include git-wiki/components/logo/logo.html %}
- {% else %}
- <h1>{{ site.title | escape }}</h1>
- {% endif %}
- </div>
-
-
- {% if site.github.is_user_page %}
- <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
- {% endif %}
-
- {% if site.show_downloads %}
- {% include git-wiki/components/action_btn/downloads.html %}
- {% endif %}
-
- {% if site.show_wiki_pages %}
- {% include git-wiki/components/lists/page-list.html %}
- {% endif %}
-
- {% if site.blog_feature and site.show_wiki_posts %}
- {% include git-wiki/components/lists/post-list.html %}
- {% endif %}
-
- {% if site.inc_after_header %}
- {% include {{ site.inc_after_header }} %}
- {% endif %}
- </div>
-</header>
-<script>
- function sidebar_toggle() {
- var sidebar = document.getElementById("git-wiki-sidebar");
- if (sidebar.style.display == "block") {
- sidebar.style.display = "none";
- sidebar.style.position = "inherit";
- } else {
- $(sidebar).attr('style', 'display: block;');
- }
- }
-</script>
diff --git a/_includes/git-wiki/sections/tail/tail.html b/_includes/git-wiki/sections/tail/tail.html
deleted file mode 100644
index f5944c9..0000000
--- a/_includes/git-wiki/sections/tail/tail.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% if site.inc_before_tail %}
-{% include {{ site.inc_before_tail }} %}
-{% endif %}
-
-<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
-
-{% if site.google_analytics %}
-<script>
- (function (i, s, o, g, r, a, m) {
- i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
- (i[r].q = i[r].q || []).push(arguments)
- }, i[r].l = 1 * new Date(); a = s.createElement(o),
- m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
- })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
-
- ga('create', '{{ site.google_analytics }}', 'auto');
- ga('send', 'pageview');
-</script>
-{% endif %}
-
-{% assign items = site.html_pages %}
-{% for page in items %}
-{% assign url = page.url | relative_url %}
-{% assign urls = urls | append: url | append: "," %}
-{% endfor %}
-
-<script type="text/javascript">
- $(document).ready(function () {
- $(document.body).checkLinks("{{ urls }}".split(","));
- });
-</script>
-
-{% if site.inc_after_tail %}
-{% include {{ site.inc_after_tail }} %}
-{% endif %}
diff --git a/_includes/git-wiki/sections/tools/tools.html b/_includes/git-wiki/sections/tools/tools.html
deleted file mode 100644
index 0b2770e..0000000
--- a/_includes/git-wiki/sections/tools/tools.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<div id="tools-buttons" style="width: 100%; text-align: right">
- {% if site.inc_before_tools %}
- {% include {{ site.inc_before_tools }} %}
- {% endif %}
-
- {% include git-wiki/components/action_btn/page_actions.html %}
-
- {% include git-wiki/components/search/index.html %}
-
- {% if site.inc_after_tools %}
- {% include {{ site.inc_after_tools }} %}
- {% endif %}
-</div> \ No newline at end of file