Add a subtitle: Writing an OS in Rust

This commit is contained in:
Philipp Oppermann
2015-10-25 14:07:40 +01:00
parent 76ea95acf5
commit f48ebb3961
3 changed files with 6 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ relative_permalinks: true
# Setup
title: phil-opp's blog
full_title: Philipp Oppermann's blog
tagline: ""
tagline: "Writing an OS in Rust"
paginate: 10
baseurl: ""

View File

@@ -9,7 +9,7 @@
<header class="masthead">
<h3 class="masthead-title">
<a href="{{ site.baseurl }}/" title="Home">{{ site.full_title }}</a>
<!--<small>{{ site.tagline }}</small>-->
<small>{{ site.tagline }}</small>
<span class="navigation">
{% for page in site.navigation_pages %}
<small><a href="{{ page[1] }}">{{ page[0] }}</a></small>

View File

@@ -25,6 +25,10 @@
}
}
.masthead-title small {
margin-left: 1rem;
}
.navigation {
float: right;
}