diff options
| -rw-r--r-- | _includes/navigator.html | 3 | ||||
| -rw-r--r-- | about.html | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/_includes/navigator.html b/_includes/navigator.html index 7e54922..3e6e8f3 100644 --- a/_includes/navigator.html +++ b/_includes/navigator.html @@ -3,8 +3,9 @@ <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 == "/support.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/support.html">SUPPORT</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 == "/support.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/support.html">SUPPORT</a></li> <li class="nav"><a class="nav"href="https://github.com/silicon-linux">GITHUB</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> diff --git a/about.html b/about.html new file mode 100644 index 0000000..451fae6 --- /dev/null +++ b/about.html @@ -0,0 +1,17 @@ +--- +project: Silicon Linux +--- + +<HTML> + <HEAD> + {% include heading.html %} + <TITLE>Silicon Linux</TITLE> + </HEAD> +<BODY> + {% include navigator.html %} +<h1 class ="title">Silicon Linux</h1> +<p class="center"><i>This website is under construction. Content will come soon.</i></p> + + {% include footer.html %} +</BODY> +</HTML> |
