summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-04-05 20:15:53 -0400
committerAlee <Alee14498@gmail.com>2019-04-05 20:15:53 -0400
commitb9c3946dab30a097cd5390e019e42a8a99116587 (patch)
treef1b1448baddf6ba5f8ef50bce9609a65854aa138
parentaadc05c21ba13f4aa8a5629d032878dba661d105 (diff)
downloadsilicon-linux-b9c3946dab30a097cd5390e019e42a8a99116587.tar.gz
silicon-linux-b9c3946dab30a097cd5390e019e42a8a99116587.tar.bz2
silicon-linux-b9c3946dab30a097cd5390e019e42a8a99116587.zip
Added improvement; Blog will be added later.
-rw-r--r--.gitignore1
-rw-r--r--_includes/footer.html3
-rw-r--r--_includes/footing.html4
-rw-r--r--_includes/heading.html5
-rw-r--r--_includes/navigator.html13
-rw-r--r--_layouts/default.html18
-rw-r--r--_layouts/posts.html18
-rw-r--r--about.html52
-rw-r--r--about.md19
-rw-r--r--faq.html40
-rw-r--r--faq.md7
-rw-r--r--index.html41
-rw-r--r--index.md8
13 files changed, 96 insertions, 133 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c08f9ad
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+_site \ No newline at end of file
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
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..c8f24b1
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ {% include heading.html %}
+ <title>{{ page.title }} | Silicon Linux</title>
+ </head>
+ <body class="bg-dark text-white">
+ <div class="wrapper">
+ {% include navigator.html %}
+ <div class="container">
+ {{ content }}
+ </div>
+ </div>
+
+ {% include footing.html %}
+ {% include footer.html %}
+ </body>
+</html> \ No newline at end of file
diff --git a/_layouts/posts.html b/_layouts/posts.html
new file mode 100644
index 0000000..c8f24b1
--- /dev/null
+++ b/_layouts/posts.html
@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ {% include heading.html %}
+ <title>{{ page.title }} | Silicon Linux</title>
+ </head>
+ <body class="bg-dark text-white">
+ <div class="wrapper">
+ {% include navigator.html %}
+ <div class="container">
+ {{ content }}
+ </div>
+ </div>
+
+ {% include footing.html %}
+ {% include footer.html %}
+ </body>
+</html> \ No newline at end of file
diff --git a/about.html b/about.html
deleted file mode 100644
index b8ea55b..0000000
--- a/about.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <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">
- <title>Silicon Linux</title>
- </head>
- <body class="bg-dark text-white">
- <div class="wrapper">
- <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
- <a class="navbar-brand d-flex align-items-center" href="index.html"><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" href="./index.html">Home</a>
- <a class="nav-item nav-link" href="./faq.html">FAQ</a>
- <a class="nav-item nav-link active" href="./about.html">About</a>
- </div>
- </div>
- </nav>
- <div class="container">
- <div class="mb-5">
- <h1 class="text-center">About Us</h1>
- <p class="font-weight-bold">Twitter: <a href="https://twitter.com/silicon_linux" class="text-white">silicon_linux</a></p>
- <p class="font-weight-bold">GitHub: <a href="https://github.com/silicon-linux" class="text-white">Silicon Linux</a></p>
- <p class="font-weight-bold">Discord: <a href="https://discord.gg/QbuuAF5" class="text-white"><img src="https://img.shields.io/discord/502598767510290432.svg?colorB=7289DA&amp;label=discord" alt="Discord Badge"></a></p>
- </div>
- <div class="mb-5">
- <h1 class="text-center">Contact Us</h1>
- <p>If you have any problems, don't hesitate to email us at: <a href="mailto:support@silicon-linux.net" class="text-white font-weight-bold">support@silicon-linux.net</a></p>
- </div>
- <div>
- <h1 class="text-center">About The Team</h1>
- <p>We currently have 9 people on our team.</p>
- <p>The Silicon Linux project started on October 18th, 2018.</p>
- </div>
- </div>
- </div>
- <div class="footer w-100 d-flex flex-column justify-content-center">
- <p class="text-center">&#169; Copyright 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>
- <!-- 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>
- </body>
-</html> \ No newline at end of file
diff --git a/about.md b/about.md
new file mode 100644
index 0000000..83c4704
--- /dev/null
+++ b/about.md
@@ -0,0 +1,19 @@
+---
+layout: default
+title: About
+---
+<div class="mb-5">
+ <h1 class="text-center">About Us</h1>
+ <p class="font-weight-bold">Twitter: <a href="https://twitter.com/silicon_linux" class="text-white">silicon_linux</a></p>
+ <p class="font-weight-bold">GitHub: <a href="https://github.com/silicon-linux" class="text-white">Silicon Linux</a></p>
+ <p class="font-weight-bold">Discord: <a href="https://discord.gg/QbuuAF5" class="text-white"><img src="https://img.shields.io/discord/502598767510290432.svg?colorB=7289DA&amp;label=discord" alt="Discord Badge"></a></p>
+</div>
+<div class="mb-5">
+ <h1 class="text-center">Contact Us</h1>
+ <p>If you have any problems, don't hesitate to email us at: <a href="mailto:support@silicon-linux.net" class="text-white font-weight-bold">support@silicon-linux.net</a></p>
+ </div>
+<div>
+ <h1 class="text-center">About The Team</h1>
+ <p>We currently have 9 people on our team.</p>
+ <p>The Silicon Linux project started on October 18th, 2018.</p>
+</div> \ No newline at end of file
diff --git a/faq.html b/faq.html
deleted file mode 100644
index ee511dd..0000000
--- a/faq.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <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">
- <title>Silicon Linux</title>
- </head>
- <body class="bg-dark text-white">
- <div class="wrapper">
- <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" href="./index.html">Home</a>
- <a class="nav-item nav-link active" href="./faq.html">FAQ</a>
- <a class="nav-item nav-link" href="./about.html">About</a>
- </div>
- </div>
- </nav>
- <div class="container">
- <h1 class="text-center mb-5">FAQ</h1>
- <h2>Q: What is Silicon Linux?</h2>
- <h2 class="font-italic">A: Silicon Linux is a linux distro created by Alee14.</h2>
- </div>
- </div>
- <div class="footer w-100 d-flex flex-column justify-content-center">
- <p class="text-center">&#169; Copyright 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>
- <!-- 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>
- </body>
-</html> \ No newline at end of file
diff --git a/faq.md b/faq.md
new file mode 100644
index 0000000..458cdaf
--- /dev/null
+++ b/faq.md
@@ -0,0 +1,7 @@
+---
+layout: default
+title: FAQ
+---
+<h1 class="text-center mb-5">FAQ</h1>
+<h2>Q: What is Silicon Linux?</h2>
+<h2 class="font-italic">A: Silicon Linux is a linux distro created by Alee14.</h2>
diff --git a/index.html b/index.html
deleted file mode 100644
index 9adcc36..0000000
--- a/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <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">
- <title>Silicon Linux</title>
- </head>
- <body class="bg-dark text-white">
- <div class="wrapper">
- <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 active" href="./index.html">Home</a>
- <a class="nav-item nav-link" href="./faq.html">FAQ</a>
- <a class="nav-item nav-link" href="./about.html">About</a>
- </div>
- </div>
- </nav>
- <div class="container">
- <div class="text-center">
- <h1>Silicon Linux</h1>
- <p class="font-italic">This website is under construction. Some content may be missing.</p>
- </div>
- </div>
- </div>
- <div class="footer w-100 d-flex flex-column justify-content-center">
- <p class="text-center">&#169; Copyright 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>
- <!-- 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>
- </body>
-</html> \ No newline at end of file
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..be83e71
--- /dev/null
+++ b/index.md
@@ -0,0 +1,8 @@
+---
+layout: default
+title: Home
+---
+<div class="text-center">
+ <h1>Silicon Linux</h1>
+ <p class="font-italic">This website is under construction. Some content may be missing.</p>
+</div> \ No newline at end of file