diff --git a/blog/templates/index.html b/blog/templates/index.html index c09910f0..9007f96b 100644 --- a/blog/templates/index.html +++ b/blog/templates/index.html @@ -5,6 +5,7 @@ {% block title %}{{ config.title }}{% endblock title %} {% block main %} +{% set posts = sections.posts %}

This blog series creates a small operating system in the @@ -13,39 +14,45 @@ Github repository.

Latest post: - {{ macros::latest_post_link(page=pages|reverse|last) }} + {% set latest_post = posts.pages|reverse|last %} + {{ latest_post.title }}

Bare Bones
- {{ macros::post_link(page=pages.9) }} - {{ macros::post_link(page=pages.8) }} - {{ macros::post_link(page=pages.7) }} - {{ macros::post_link(page=pages.6) }} + {{ macros::post_link(page=posts.pages.9) }} + {{ macros::post_link(page=posts.pages.8) }} + {{ macros::post_link(page=posts.pages.7) }} + {{ macros::post_link(page=posts.pages.6) }}
Memory Management
- {{ macros::post_link(page=pages.5) }} - {{ macros::post_link(page=pages.4) }} - {{ macros::post_link(page=pages.3) }} - {{ macros::post_link(page=pages.2) }} + {{ macros::post_link(page=posts.pages.5) }} + {{ macros::post_link(page=posts.pages.4) }} + {{ macros::post_link(page=posts.pages.3) }} + {{ macros::post_link(page=posts.pages.2) }}
Exceptions
- {{ macros::post_link(page=pages.1) }} - {{ macros::post_link(page=pages.0) }} + {{ macros::post_link(page=posts.pages.1) }} + {{ macros::post_link(page=posts.pages.0) }}

-

Additional Resources

- +{% set extra = sections.extra %} +

{{ extra.title }}

-