diff --git a/_sass/main.scss b/_sass/main.scss index abae9c7..cc62ce5 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -245,7 +245,15 @@ body { } > header { - > h1 { + display: flex; + flex-direction: row; + align-items: center; + + svg { + margin-right: 8px; + } + + > div > h1 { margin: 0; font-size: 24px; font-weight: 700; diff --git a/blog.html b/blog.html deleted file mode 100644 index fd0e46e..0000000 --- a/blog.html +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: default -title: Blog ---- -

Latest Posts

- - \ No newline at end of file diff --git a/posts.html b/posts.html index 6bd054e..3c3b560 100644 --- a/posts.html +++ b/posts.html @@ -9,8 +9,10 @@

Posts

{% for post in site.posts %}
-

{{ post.title }}

- +
+

{{ post.title }}

+ +
{{ post.excerpt }}
diff --git a/projects.html b/projects.html index d1af5b4..e01c6a0 100644 --- a/projects.html +++ b/projects.html @@ -11,8 +11,13 @@

Projects

{% for project in sorted_projects %}
-

{{ project.title }}

- + {% if project.icon %} + {% include {{ project.icon | prepend: 'svg/' }} %} + {% endif %} +
+

{{ project.title }}

+ +

{{ project.description }}

diff --git a/work.html b/work.html index e5ce4c4..7bf79e6 100644 --- a/work.html +++ b/work.html @@ -7,12 +7,17 @@

Hayden/

Work

- {% assign sorted_work = site.work | sort: 'year' | reverse %} + {% assign sorted_work = site.work | reverse %} {% for work in sorted_work %}
-

{{ work.title }}

- + {% if work.icon %} + {% include {{ work.icon | prepend: 'svg/' }} %} + {% endif %} +
+

{{ work.title }}

+ +
{{ work.description }}