From 516bc38b2b9a82a47d701e2712190f520e4ef21f Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 21 Feb 2020 11:17:31 +0100 Subject: [PATCH] Ensure that each page only has a single

According to Bing's webmaster tool multiple

tags on a site are a SEO problem. --- blog/templates/second-edition/base.html | 4 ++-- blog/templates/second-edition/index.html | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) 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.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 %}