diff --git a/blog/templates/404.html b/blog/templates/404.html index ac8b05b7..d66ea999 100644 --- a/blog/templates/404.html +++ b/blog/templates/404.html @@ -6,7 +6,7 @@

Page not found

Sorry, this address is not valid.

-

Go to the index page.

+

Go to the index page.

If you followed a link on this site, please report it!

{% endblock main %} diff --git a/blog/templates/first-edition/base.html b/blog/templates/first-edition/base.html index b67763fd..cd13eb98 100644 --- a/blog/templates/first-edition/base.html +++ b/blog/templates/first-edition/base.html @@ -24,7 +24,7 @@

{{ config.title }} (First Edition)

-

{{ config.extra.subtitle }}

+

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

{% block main %}{% endblock main %}
@@ -35,7 +35,7 @@
© . All rights reserved. - Contact + Contact diff --git a/blog/templates/first-edition/handling-exceptions-with-naked-fns.html b/blog/templates/first-edition/handling-exceptions-with-naked-fns.html index ccecf420..ba7faf2b 100644 --- a/blog/templates/first-edition/handling-exceptions-with-naked-fns.html +++ b/blog/templates/first-edition/handling-exceptions-with-naked-fns.html @@ -6,6 +6,6 @@ {% block introduction %} -

These posts explain how to handle CPU exceptions using naked functions. Historically, these posts were the main exception handling posts before the x86-interrupt calling convention and the x86_64 crate existed. Our new way of handling exceptions can be found in the “Handling Exceptions” post.

+

These posts explain how to handle CPU exceptions using naked functions. Historically, these posts were the main exception handling posts before the x86-interrupt calling convention and the x86_64 crate existed. Our new way of handling exceptions can be found in the “Handling Exceptions” post.

{% endblock introduction %} diff --git a/blog/templates/first-edition/index.html b/blog/templates/first-edition/index.html index 5efcbeab..0548080f 100644 --- a/blog/templates/first-edition/index.html +++ b/blog/templates/first-edition/index.html @@ -21,7 +21,7 @@
- No longer updated! You are viewing the first edition of “Writing an OS in Rust”, which is no longer updated. You can find the second edition here. + No longer updated! You are viewing the first edition of “Writing an OS in Rust”, which is no longer updated. You can find the second edition here.
Bare Bones
diff --git a/blog/templates/first-edition/page.html b/blog/templates/first-edition/page.html index c50ddf48..93c79332 100644 --- a/blog/templates/first-edition/page.html +++ b/blog/templates/first-edition/page.html @@ -26,7 +26,7 @@
- No longer updated! You are viewing the a post of the first edition of “Writing an OS in Rust”, which is no longer updated. You can find the second edition here. + No longer updated! You are viewing the a post of the first edition of “Writing an OS in Rust”, which is no longer updated. You can find the second edition here.
{{ page.content | safe }} diff --git a/blog/templates/redirect-to-frontpage.html b/blog/templates/redirect-to-frontpage.html index ddc0d684..665ba5e9 100644 --- a/blog/templates/redirect-to-frontpage.html +++ b/blog/templates/redirect-to-frontpage.html @@ -1,8 +1,8 @@ - + - + \ No newline at end of file diff --git a/blog/templates/second-edition/base.html b/blog/templates/second-edition/base.html index 2ffa1669..7319cb8a 100644 --- a/blog/templates/second-edition/base.html +++ b/blog/templates/second-edition/base.html @@ -25,9 +25,9 @@

- {{ config.title }} (Second Edition) + {{ config.title | safe }} (Second Edition)

-

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

+

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

{% block header %}{% endblock header %}
@@ -40,7 +40,7 @@
© . All rights reserved. - Contact + Contact diff --git a/blog/templates/second-edition/index.html b/blog/templates/second-edition/index.html index fe4a0f37..41bf485d 100644 --- a/blog/templates/second-edition/index.html +++ b/blog/templates/second-edition/index.html @@ -56,7 +56,7 @@

First Edition

- You are viewing the second edition of “Writing an OS in Rust”, which is still in progress. The first edition has more content, but is no longer updated. We try our best to incorporate the missing content soon. + You are viewing the second edition of “Writing an OS in Rust”, which is still in progress. The first edition has more content, but is no longer updated. We try our best to incorporate the missing content soon.

@@ -82,7 +82,7 @@ {% for page in status_updates.pages | slice(end=3) %}
  • {{ page.title }}
  • {% endfor %} -
  • view all »
  • +
  • view all »
  • diff --git a/blog/templates/second-edition/page.html b/blog/templates/second-edition/page.html index 38f121e9..94000b8f 100644 --- a/blog/templates/second-edition/page.html +++ b/blog/templates/second-edition/page.html @@ -4,7 +4,7 @@ {% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} {% block header %} - + {% endblock header %} {% block main %} @@ -31,7 +31,7 @@ {% if page.extra.warning %}
    {% if page.extra.warning_short %} {{ page.extra.warning_short }} {% endif %} - {{ page.extra.warning | markdown(inline=true)}} + {{ page.extra.warning | markdown(inline=true) | safe }}
    {% endif %}