From 6be428b24826ca664cb40e184720cd112acb665c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 14 Feb 2016 15:31:46 +0100 Subject: [PATCH] Add index.html --- layouts/index.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 layouts/index.html diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 00000000..5f618d4f --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,21 @@ +{{ partial "header.html" . }} + +

+ This blog series creates a small operating system in the + Rust programming language. 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 + Github repository. +

+

Latest post: {{ range first 1 .Site.Pages }} + {{ .Title }} + {{ end }} +

+ +
+ {{ range .Site.Pages }} + {{ .Render "teaser" }} + {{ end }} +
+ +{{ partial "footer.html" . }}