Create page template
parent
0b8ed2c3d8
commit
cdb2ca82ed
@ -0,0 +1,6 @@
|
|||||||
|
+++
|
||||||
|
title = "Lorem Ipsum"
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
categories = ["lorem", "ipsum"]
|
||||||
|
+++
|
@ -0,0 +1,10 @@
|
|||||||
|
{% extends "index.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{{ page.title }} – {{ config.title }}
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h1>{{ page.title | safe }}</h1>
|
||||||
|
{{ page.content | safe }}
|
||||||
|
{% endblock content %}
|
Loading…
Reference in New Issue