mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 23:29:17 -08:00
hmmm
This commit is contained in:
parent
cfa8c8d479
commit
7d9d67bede
4 changed files with 26 additions and 2 deletions
24
templates/base-section-title.html
Normal file
24
templates/base-section-title.html
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>{{ section.title }} - {{ config.extra.site_title }}</title>
|
||||||
|
{% include "head.html" %}
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<header>
|
||||||
|
{% include "header.html" %}
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
{% block content %} {% endblock content %}
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
{% include "footer.html" %}
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base-section-title.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<section id="blogposts">
|
<section id="blogposts">
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{% extends "base-title.html" %}
|
{% extends "base-page-title.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue