From de08697ecd437c1df67dc07ac323efabfdaac3cf Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 18 Nov 2018 14:24:02 -0500 Subject: added columns and rows in homepage --- 404.html | 31 ++++++++++++++++++++----------- _includes/footer.html | 2 +- _layouts/default.html | 29 +++++++++++++++++------------ _layouts/post.html | 19 +++++++++++-------- blog.html | 35 +++++++++++++++++++---------------- index.html | 46 +++++++++++++++++++++++++++++----------------- projects.md | 2 +- style.css | 13 ++++++++++++- 8 files changed, 110 insertions(+), 67 deletions(-) diff --git a/404.html b/404.html index 3a215b3..baa4602 100644 --- a/404.html +++ b/404.html @@ -2,19 +2,28 @@ --- - + + {% include heading.html %} - 404 | {{ site.title }} - + 404 | {{ site.title }} + + - {% include navigator.html %} -
-

404

+ {% 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.

-
+

+

Page not found :(
+

+

+

Uh Oh! The requested page could not be found.
+

+

+

You may need to go back to the homepage.
+

+
{% include footer.html %} - + + \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index 875fa97..42132c5 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,3 +1,3 @@ + \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 12e4b16..a60c88a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,19 +2,24 @@ --- - - {% include heading.html %} - {{ page.title }} | {{ site.title }} - + + + {% include heading.html %} + {{ page.title }} | {{ site.title }} + + - {% include navigator.html %} -
-

{{ page.title }}

-

{{ page.description }}

-
-
+ {% include navigator.html %} +
+

{{ page.title }}

+

+
{{ page.description }}
+

+
+
{{ content }} -
+
{% include footer.html %} - + + \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html index 7a5d3bb..2f0a972 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,18 +2,21 @@ --- - - {% include heading.html %} - {{ page.title }} | {{ site.title }} Blog - + + + {% include heading.html %} + {{ page.title }} | {{ site.title }} Blog + + {% include navigator.html %}
-

{{ page.title }}

-

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

+

{{ page.title }}

+

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

- {{ content }} + {{ content }}
{% include footer.html %} - + + \ No newline at end of file diff --git a/blog.html b/blog.html index dbcb294..251f390 100644 --- a/blog.html +++ b/blog.html @@ -2,27 +2,30 @@ --- - - {% include heading.html %} - Blog | {{ site.title }} - + + + {% include heading.html %} + Blog | {{ site.title }} + + {% include navigator.html %}
-

Blog

+

Blog

- -
+ + {% include footer.html %} - + + \ No newline at end of file diff --git a/index.html b/index.html index f8867cc..8e6de8d 100644 --- a/index.html +++ b/index.html @@ -3,25 +3,37 @@ project: Andrew Lee --- - - {% include heading.html %} - Home | {{ site.title }} - + + + {% include heading.html %} + Home | {{ site.title }} + + {% include navigator.html %} -
-

{{ site.title }} Homepage

-

{{ 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.

+
+

{{ site.title }} Homepage

+

+
{{ 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 to program?

+

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

+
+
{% include footer.html %} - + + \ No newline at end of file diff --git a/projects.md b/projects.md index 5f4b595..7362b06 100644 --- a/projects.md +++ b/projects.md @@ -4,7 +4,7 @@ title: Projects description: These are the projects i'm currently working on --- -
+
Logo
diff --git a/style.css b/style.css index cfd8528..c14e9b3 100644 --- a/style.css +++ b/style.css @@ -154,11 +154,22 @@ li a:hover { } -.row { +.row-cards { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; +} + +.row-column:after { + content: ""; + display: table; + clear: both; +} + +.column { + float: left; + width: 33.33%; } \ No newline at end of file -- cgit v1.2.3