diff --git a/blog/templates/second-edition/base.html b/blog/templates/second-edition/base.html index b301ae06..27f1aeba 100644 --- a/blog/templates/second-edition/base.html +++ b/blog/templates/second-edition/base.html @@ -24,9 +24,9 @@
-

+

{{ config.title | safe }} -

+

{{ config.extra.subtitle | replace(from=" ", to=" ") | safe }}

{% block header %}{% endblock header %}
diff --git a/blog/templates/second-edition/index.html b/blog/templates/second-edition/index.html index 275ff4de..ca8f039b 100644 --- a/blog/templates/second-edition/index.html +++ b/blog/templates/second-edition/index.html @@ -8,7 +8,7 @@ {% set posts_section = get_section(path = "second-edition/posts/_index.md") %} {% set posts = posts_section.pages %} -

Posts

+

Writing an OS in Rust

@@ -55,7 +55,7 @@


-

Status Updates

+

Status Updates

{% set status_updates = get_section(path = "status-update/_index.md") %}

{{ status_updates.description }}

    @@ -67,12 +67,12 @@
-

First Edition

+

First Edition

You are currently viewing the second edition of “Writing an OS in Rust”. The first edition is very different in many aspects, for example it builds upon the GRUB bootloader instead of using the `bootloader` crate. In case you're interested in it, it is still available. Note that the first edition is no longer updated and might contain outdated information. read the first edition »

-

Support Me

+

Support Me

{% include "support.html" %}
{% endblock main %}