summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html3
-rw-r--r--_includes/footing.html4
-rw-r--r--_includes/heading.html5
-rw-r--r--_includes/navigator.html13
4 files changed, 25 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..47e5456
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,3 @@
+<div class="footer w-100 d-flex flex-column justify-content-center">
+ <p class="text-center">&#169; Copyright 2018-2019, Silicon Linux Development Group. <a href="https://github.com/silicon-linux/silicon-linux.github.io/issues" class="text-white">Report a bug.</a></p>
+ </div> \ No newline at end of file
diff --git a/_includes/footing.html b/_includes/footing.html
new file mode 100644
index 0000000..203ff94
--- /dev/null
+++ b/_includes/footing.html
@@ -0,0 +1,4 @@
+ <!-- Bootstrap JS -->
+ <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> \ No newline at end of file
diff --git a/_includes/heading.html b/_includes/heading.html
new file mode 100644
index 0000000..276c270
--- /dev/null
+++ b/_includes/heading.html
@@ -0,0 +1,5 @@
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
+<link rel="stylesheet" href="./assets/css/index.css">
+<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico"> \ No newline at end of file
diff --git a/_includes/navigator.html b/_includes/navigator.html
new file mode 100644
index 0000000..f35f5b1
--- /dev/null
+++ b/_includes/navigator.html
@@ -0,0 +1,13 @@
+<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
+ <a class="navbar-brand d-flex align-items-center" href="#"><img src="assets/images/silicon-linux-translogo.png" width="32px;" height="32px;" class="mr-2">Silicon Linux</a>
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
+ <span class="navbar-toggler-icon"></span>
+ </button>
+ <div class="collapse navbar-collapse" id="navbarNavAltMarkup">
+ <div class="navbar-nav">
+ <a class="nav-item nav-link" {% if page.url == "/" %}style="color: #ffffff;"{% endif %} href="/">Home</a>
+ <a class="nav-item nav-link" {% if page.url == "/faq.html" %}style="color: #ffffff;"{% endif %} href="/faq">FAQ</a>
+ <a class="nav-item nav-link" {% if page.url == "/about.html" %}style="color: #ffffff;"{% endif %} href="/about">About</a>
+ </div>
+ </div>
+</nav> \ No newline at end of file