1
0

Article body styles

This commit is contained in:
2021-12-03 21:55:43 +01:00
parent 23a204c2cc
commit 775a43dad2
4 changed files with 49 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<title>{% block title %}{{ config.title }}{% endblock %}</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>

11
templates/page.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "index.html" %}
{% block title %}
{{ page.title }} &mdash; {{ config.title }}
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{{ macros::page_info(page=page) }}
{% endblock content %}