Fix page title positioning
This commit is contained in:
parent
0d026da92c
commit
c4e47cbbd7
|
@ -1,7 +1,9 @@
|
||||||
{% extends "default" %}
|
{% extends "default" %}
|
||||||
|
|
||||||
{% block content_wrapper %}
|
{% block content_wrapper %}
|
||||||
|
<div>
|
||||||
<h1>{{ page.title }}</h1>
|
<h1>{{ page.title }}</h1>
|
||||||
|
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{% extends 'page' %}
|
{% extends 'page' %}
|
||||||
|
|
||||||
{% block body %}
|
{% block content_wrapper %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
|
|
||||||
{% include 'about-author' %}
|
{% include 'about-author' %}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{% extends "page.html.twig" %}
|
{% extends "page.html.twig" %}
|
||||||
|
|
||||||
{% block body %}
|
{% block content_wrapper %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
|
|
||||||
{% include 'talk/slides' with {
|
{% include 'talk/slides' with {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
layout: default
|
|
||||||
title: Home
|
title: Home
|
||||||
permalink: /
|
permalink: /
|
||||||
---
|
---
|
||||||
|
|
Loading…
Reference in a new issue