mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 07:09:18 -08:00
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
|
|
{% include "love.html" %}
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{% if section is defined and section.title is defined and section.title is string %}
|
|
{{ section.title }} -
|
|
{% elif page is defined and page.title is defined and page.title is string %}
|
|
{{ page.title }} -
|
|
{% endif %}
|
|
{{ config.extra.site_title }}
|
|
</title>
|
|
<meta property="og:title" content="
|
|
{% if section is defined and section.title is defined and section.title is string %}
|
|
{{ section.title }} -
|
|
{% elif page is defined and page.title is defined and page.title is string %}
|
|
{{ page.title }} -
|
|
{% endif %}
|
|
{{ config.extra.site_title }}
|
|
" />
|
|
{% include "head.html" %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
{% include "header.html" %}
|
|
</header>
|
|
<main>
|
|
{% block content %} {% endblock content %}
|
|
</main>
|
|
<footer>
|
|
{% include "footer.html" %}
|
|
</footer>
|
|
</div>
|
|
{% include "nonoscript.html" %}
|
|
</body>
|
|
|
|
</html>
|