mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
66 lines
2.4 KiB
HTML
66 lines
2.4 KiB
HTML
{% extends "second-edition/base.html" %}
|
|
|
|
{% import "macros.html" as macros %}
|
|
|
|
{% block title %}{{ config.title }}{% endblock title %}
|
|
|
|
{% block main %}
|
|
{% set posts_section = get_section(path = "second-edition/posts/_index.md") %}
|
|
{% set posts = posts_section.pages | reverse %}
|
|
|
|
<div class="front-page-introduction">
|
|
<p>
|
|
This blog series creates a small operating system in the
|
|
<a href="https://www.rust-lang.org/">Rust programming language</a>. Each post is a small tutorial and includes all
|
|
needed code, so you can follow along if you like. The source code is also available in the corresponding
|
|
<a href="https://github.com/phil-opp/blog_os">Github repository</a>.
|
|
</p>
|
|
<p>Latest post:
|
|
{% set latest_post = posts|last %}
|
|
<strong><a href="/{{ latest_post.path | safe }}">{{ latest_post.title }}</a></strong>
|
|
</p>
|
|
</div>
|
|
|
|
<div id="bare-bones" class="post-category bare-bones">Bare Bones</div>
|
|
<div class="posts bare-bones">
|
|
{{ macros::post_link(page=posts.0) }}
|
|
{{ macros::post_link(page=posts.1) }}
|
|
{{ macros::post_link(page=posts.2) }}
|
|
</div>
|
|
|
|
<div id="testing" class="post-category testing">Testing</div>
|
|
<div class="posts testing">
|
|
{{ macros::post_link(page=posts.3) }}
|
|
{{ macros::post_link(page=posts.4) }}
|
|
</div>
|
|
|
|
<div class="posts subscribe">
|
|
<h2 class="post-title">Subscribe</h2>
|
|
Receive notifications about new posts and other major changes.
|
|
<form
|
|
action="https://buttondown.email/api/emails/embed-subscribe/phil-opp"
|
|
method="post"
|
|
target="popupwindow"
|
|
onsubmit="window.open('https://buttondown.email/phil-opp', 'popupwindow')"
|
|
class="embeddable-buttondown-form subscribe"
|
|
>
|
|
<div class="subscribe-fields">
|
|
<input type="email" name="email" id="bd-email" placeholder="Enter your email">
|
|
<input type="hidden" value="1" name="embed"/>
|
|
<input type="submit" value="Subscribe" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="posts first-edition">
|
|
<h2 class="post-title">First Edition</h2>
|
|
You are viewing the second edition of “Writing an OS in Rust”, which is still in progress. The <a href="{{ get_url(path = "/first-edition") }}">first edition</a> has more content, but is no longer updated. We try our best to incorporate the missing content soon.
|
|
</div>
|
|
|
|
<aside id="recent-updates">
|
|
<h2>Recent Updates</h2>
|
|
{% include "recent-updates.html" %}
|
|
</aside>
|
|
|
|
{% endblock main %}
|