diff --git a/_sass/_masthead.scss b/_sass/_masthead.scss index 797d0af7..a6cb0e75 100644 --- a/_sass/_masthead.scss +++ b/_sass/_masthead.scss @@ -5,7 +5,7 @@ .masthead { padding-top: 1rem; padding-bottom: 1rem; - margin-bottom: 3rem; + margin-bottom: 1rem; } .masthead-title { @@ -37,3 +37,7 @@ .navigation small { margin-left: 1.5rem; } + +.front-page-introduction { + margin-bottom: 2rem; +} diff --git a/index.html b/index.html index 808af355..aa64020a 100644 --- a/index.html +++ b/index.html @@ -2,27 +2,34 @@ layout: default title: Home --- -
-Latest Post: {% for post in site.posts limit:1 %} + +

+ This blog series creates a small operating system in the + Rust programming language. Each post + is a small tutorial and includes all needed code, so you can follow along if + you like. The source code is also available in the corresponding + Github repository. +

+

Latest post: {% for post in site.posts limit:1 %} {{post.title}} -{% endfor %} -

+ {% endfor %} +

{% assign posts = site.posts | reverse %} -
Bare Bones
+
Bare Bones
{% for post in posts limit:4 %} {% include post_teaser.html %} {% endfor %}
-
Memory Management
+
Memory Management
{% for post in posts offset:4 limit:3 %} {% include post_teaser.html %}