Use a plain template for pages

This commit is contained in:
Philipp Oppermann
2017-06-13 17:30:06 +02:00
parent 1530cfe55f
commit ca96cae9cc
7 changed files with 14 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
+++ +++
title = "Cross Compile Binutils" title = "Cross Compile Binutils"
description = "" template = "plain.html"
url = "cross-compile-binutils" url = "cross-compile-binutils"
+++ +++

View File

@@ -1,6 +1,6 @@
+++ +++
title = "Cross Compiling: libcore" title = "Cross Compiling: libcore"
description = "" template = "plain.html"
url = "cross-compile-libcore" url = "cross-compile-libcore"
+++ +++

View File

@@ -1,6 +1,6 @@
+++ +++
title = "Set Up GDB" title = "Set Up GDB"
description = "" template = "plain.html"
url = "set-up-gdb" url = "set-up-gdb"
+++ +++

View File

@@ -1,6 +1,7 @@
+++ +++
title = "Talks" title = "Talks"
url = "talks" url = "talks"
template = "plain.html"
+++ +++
- “Open Source OS Development in Rust” at HTWG Konstanz, May 22, 2017: [slides](https://phil-opp.github.io/talk-konstanz-may-2017/) - “Open Source OS Development in Rust” at HTWG Konstanz, May 22, 2017: [slides](https://phil-opp.github.io/talk-konstanz-may-2017/)

View File

@@ -1,6 +1,7 @@
+++ +++
title = "Page not found" title = "Page not found"
url = "404.html" url = "404.html"
template = "plain.html"
+++ +++
Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.

View File

@@ -1,6 +1,7 @@
+++ +++
title = "Contact" title = "Contact"
url = "contact" url = "contact"
template = "plain.html"
+++ +++
Philipp Oppermann Philipp Oppermann

View File

@@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
{% block main %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{% endblock main %}