aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_config.yml2
-rw-r--r--_includes/navigator.html2
-rw-r--r--about.html20
-rw-r--r--blog.html2
-rw-r--r--index.html9
-rw-r--r--project.html20
-rw-r--r--style.css11
7 files changed, 50 insertions, 16 deletions
diff --git a/_config.yml b/_config.yml
index b7c0d4c..feb4e65 100644
--- a/_config.yml
+++ b/_config.yml
@@ -16,7 +16,7 @@
title: Andrew's Website
email: alee14498@gmail.com
description: >- # this means to ignore newlines until "baseurl:"
- My personal website
+ Andrew's personal website
# baseurl: "" # the subpath of your site, e.g. /blog
url: "http://alee14.ml" # the base hostname & protocol for your site, e.g. http://example.com
diff --git a/_includes/navigator.html b/_includes/navigator.html
index d6fa974..5759dca 100644
--- a/_includes/navigator.html
+++ b/_includes/navigator.html
@@ -1,6 +1,6 @@
<div id="navigation">
<ul class="navbar">
- <li class="nav logo">Andrew's Website</li>
+ <li class="nav logo">{{ site.title }}</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 == "/project.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav"href="/project.html">PROJECTS</a></li>
<li class="nav" {% if page.url == "/blog.html" %}style="background-color: #1f8e42;"{% endif %}><a class="nav" href="/blog.html">BLOG</a></li>
diff --git a/about.html b/about.html
new file mode 100644
index 0000000..c24a3ae
--- /dev/null
+++ b/about.html
@@ -0,0 +1,20 @@
+---
+project: Andrew's Website
+---
+
+<HTML>
+ <HEAD>
+ {% include heading.html %}
+ <TITLE>About Andrew</TITLE>
+ </HEAD>
+<BODY>
+ {% include navigator.html %}
+<h1 class ="title">About Andrew</h1>
+<h2>Contact me</h2>
+<p>Email Address: {{ site.email }}</p>
+<p>GitHub: <a href="https://github.com/Alee14">Alee14</a></p>
+<p>Twitter: <a href="https://twitter.com/Alee14498">Alee14498</a></p>
+<p>Discord: <a href="https://discord.gg/EFhRDqG">Alee's Community</a></p>
+ {% include footer.html %}
+</BODY>
+</HTML>
diff --git a/blog.html b/blog.html
index 15cb9f5..2eabd2b 100644
--- a/blog.html
+++ b/blog.html
@@ -5,7 +5,7 @@ project: Andrew's Website
<HTML>
<HEAD>
{% include heading.html %}
- <TITLE>Andrew's Website Blog</TITLE>
+ <TITLE>Andrew's Blog</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
diff --git a/index.html b/index.html
index e7e83cf..45fb092 100644
--- a/index.html
+++ b/index.html
@@ -5,12 +5,15 @@ project: Andrew's Website
<HTML>
<HEAD>
{% include heading.html %}
- <TITLE>Andrew's Website</TITLE>
+ <TITLE>{{ site.title }}</TITLE>
</HEAD>
<BODY>
{% include navigator.html %}
-<h1 class ="title">Andrew's Website</h1>
-
+<h1 class ="title">{{ site.title }}</h1>
+<h2>Who am I?</h2>
+<p>Hey there! My name is Andrew Lee and I like program things such as C# and JavaScript.</p>
+<h2>When did I start programming?</h2>
+<p>Well.. I started back in 2016 when I made my first VB program which is a HTML Editor.</p>
{% include footer.html %}
</BODY>
diff --git a/project.html b/project.html
new file mode 100644
index 0000000..59756f5
--- /dev/null
+++ b/project.html
@@ -0,0 +1,20 @@
+---
+project: Andrew's Website
+---
+
+<HTML>
+ <HEAD>
+ {% include heading.html %}
+ <TITLE>Andrew's Projects</TITLE>
+ </HEAD>
+<BODY>
+ {% include navigator.html %}
+<h1 class ="title">Andrew's Projects</h1>
+<h2>These are the projects i'm currently working on:</h2>
+<p><a href="https://silicon-linux.net">Silicon Linux</a></p>
+<p><a href="https://github.com/AleeCorp/AleeBot">AleeBot</a></p>
+<p><a href="https://github.com/UniverseDevGroup/Project-Silicon">Project: Silicon</a></p>
+
+ {% include footer.html %}
+</BODY>
+</HTML>
diff --git a/style.css b/style.css
index fbed2ca..fc91533 100644
--- a/style.css
+++ b/style.css
@@ -37,10 +37,6 @@ a {
text-align: center;
}
-.answer {
- font-style: italic;
- padding: 0;
-}
.footer {
position: fixed;
left: 0;
@@ -51,7 +47,7 @@ a {
}
.title{
- font-size: 50px;
+ font-size: 40px;
text-align: center;
}
@@ -111,11 +107,6 @@ li a:hover {
text-align: center;
}
-.Question {
- padding: 0;
-
-}
-
.nav .icon {
display: none;
}