summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html3
-rw-r--r--_includes/heading.html8
-rw-r--r--_includes/navigator.html21
3 files changed, 0 insertions, 32 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
deleted file mode 100644
index 304428f..0000000
--- a/_includes/footer.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<div class="footer">
- <p>&copy; Copyright 2019, Silicon Linux Development Group. <a href="https://github.com/silicon-linux/silicon-linux.github.io/issues">Report a bug.</a></p>
-</div>
diff --git a/_includes/heading.html b/_includes/heading.html
deleted file mode 100644
index 08ac248..0000000
--- a/_includes/heading.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<link href="/style.css" type="text/css" rel="stylesheet">
-<script src="/jquery-3.3.1.min.js"></script>
-<script src="/scripts.js"></script>
-<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
-<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
-<meta charset="utf-8">
-<meta name="viewport" content="width=device-width">
-<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
diff --git a/_includes/navigator.html b/_includes/navigator.html
deleted file mode 100644
index 5995560..0000000
--- a/_includes/navigator.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<div id="navigation">
- <ul class="navbar">
- <li class="nav logo">Silicon Linux</li>
- <li class="nav" {% if page.url == "/" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/">HOME</a></li>
- <li class="nav" {% if page.url == "/download.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav"href="/download.html">DOWNLOAD</a></li>
- <li class="nav" {% if page.url == "/blog.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/blog.html">BLOG</a></li>
- <li class="nav" {% if page.url == "/faq.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/faq.html">FAQ</a></li>
- <li class="nav" {% if page.url == "/about.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/about.html">ABOUT</a></li>
- </ul>
-</div>
-
-<script>
- function myFunction() {
- var x = document.getElementById("navigation");
- if (x.className === "nav") {
- x.className += " responsive";
- } else {
- x.className = "nav";
- }
- }
-</script> \ No newline at end of file