Fix page title positioning

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 0d026da92c
commit c4e47cbbd7
4 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,9 @@
{% extends "default" %}
{% block content_wrapper %}
<h1>{{ page.title }}</h1>
<div>
<h1>{{ page.title }}</h1>
{{ parent() }}
{{ parent() }}
</div>
{% endblock %}

View file

@ -1,6 +1,6 @@
{% extends 'page' %}
{% block body %}
{% block content_wrapper %}
{{ parent() }}
{% include 'about-author' %}

View file

@ -1,6 +1,6 @@
{% extends "page.html.twig" %}
{% block body %}
{% block content_wrapper %}
{{ parent() }}
{% include 'talk/slides' with {

View file

@ -1,5 +1,4 @@
---
layout: default
title: Home
permalink: /
---