From e0a73854a9e48d87e28e415e7d0b312e386c4b82 Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 18 Nov 2018 00:24:28 -0500 Subject: Massive changes --- 404.html | 2 ++ _includes/footer.html | 2 +- _includes/navigator.html | 4 ++-- _layouts/default.html | 4 ++-- _layouts/post.html | 4 ++-- about.md | 12 ------------ blog.html | 2 ++ contact.md | 11 +++++++++++ index.html | 11 ++++++++--- style.css | 29 ++++++++++++++++++++++------- 10 files changed, 52 insertions(+), 29 deletions(-) delete mode 100644 about.md create mode 100644 contact.md diff --git a/404.html b/404.html index 87c7fea..4ec9ea8 100644 --- a/404.html +++ b/404.html @@ -7,11 +7,13 @@ {% include navigator.html %} +

404

Page not found :(

Uh Oh! The requested page could not be found.

You may need to go back to the homepage.

+
{% include footer.html %} diff --git a/_includes/footer.html b/_includes/footer.html index c50c255..875fa97 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,3 @@ diff --git a/_includes/navigator.html b/_includes/navigator.html index 82e6550..89e617e 100644 --- a/_includes/navigator.html +++ b/_includes/navigator.html @@ -2,8 +2,8 @@ \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 0c85d3c..fe6477c 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,9 +8,9 @@ {% include navigator.html %} - +
{{ content }} - +
{% include footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html index d281d5a..1eb604c 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -8,12 +8,12 @@ {% include navigator.html %} - +

{{ page.title }}

{{ page.date | date_to_string }} | By: {{ page.author }}

{{ content }} - +
{% include footer.html %} diff --git a/about.md b/about.md deleted file mode 100644 index df2842b..0000000 --- a/about.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: default -title: About ---- -

About Andrew Lee

- -

Contact me

-

Email Address: {{ site.email }}

-

GitHub: Alee14

-

Twitter: Alee14498

-

YouTube: Andrew Lee

-

Discord: Alee's Community

diff --git a/blog.html b/blog.html index 316c407..bc78db5 100644 --- a/blog.html +++ b/blog.html @@ -8,6 +8,7 @@ {% include navigator.html %} +

Latest Posts

+
{% include footer.html %} diff --git a/contact.md b/contact.md new file mode 100644 index 0000000..5265b25 --- /dev/null +++ b/contact.md @@ -0,0 +1,11 @@ +--- +layout: default +title: Contact +--- +

Contact Me

+ +

Email Address: {{ site.email }}

+

GitHub: Alee14

+

Twitter: Alee14498

+

YouTube: Andrew Lee

+

Discord: Alee's Community

diff --git a/index.html b/index.html index aaaa66e..41f92ba 100644 --- a/index.html +++ b/index.html @@ -9,12 +9,17 @@ project: Andrew Lee {% include navigator.html %} +

{{ site.title }} Homepage

-

Who am I?

-

Hello! My name is Andrew Lee and I live in Montreal and I like program things such as C# and JavaScript.

-

When did I start programming?

+

{{ site.description }}

+

What is this website?

+

This is website my own personal website.

+

Who am I?

+

My name is Andrew Lee and I live in Montreal and I like program things such as C# and JavaScript.

+

When did I start programming?

Well.. I started back in 2016 when I made my first VB program which is a HTML Editor.

+
{% include footer.html %} diff --git a/style.css b/style.css index fc91533..30aa3e0 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,9 @@ +.container { + width:95%; + margin:auto; + overflow:hidden; +} + @media screen and (max-width: 600px) { .nav a:not(:first-child) {display: none;} .nav a.icon { @@ -23,6 +29,8 @@ body{ font-family: 'Roboto', sans-serif; + padding:0; + margin:0; background: #333; color: white } @@ -38,11 +46,10 @@ a { } .footer { - position: fixed; - left: 0; - bottom: 0; - width: 100%; - color: white; + padding:20px; + margin-top:20px; + color:white; + background-color: #1f8e42; text-align: center; } @@ -111,5 +118,13 @@ li a:hover { display: none; } - - \ No newline at end of file + +.btn { + border: none; + font-size: 14px; + color: white; + padding: 14px 30px; +} + +.default {background-color: #348d43; color: white;} +.default:hover {background: #ddd;} -- cgit v1.2.3