site/templates/base.html
2023-06-07 19:48:16 -06:00

45 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% set title = "TheMissingPiece" %}
{% set img = get_url(path="/missing.png") %}
{% set url = get_url(path="/") %}
{%- if section -%}
{% set description = section.title %}
{%- elif page -%}
{% set description = page.title %}
{%- else -%}
{% set description = "404 Page missing" %}
{%- endif -%}
<title>{{ description }}</title>
<meta name="title" content="{{ title }}">
<meta name="description" content="{{ description }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ url }}">
<meta property="og:title" content="{{ title }}">
<meta property="og:description" content="{{ description }}">
<meta property="og:image" content="{{ img }}">
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="{{ url }}">
<meta property="twitter:title" content="{{ title }}">
<meta property="twitter:description" content="{{ description }}">
<meta property="twitter:image" content="{{ img }}">
<link rel="icon" type="image/x-icon" href='{{ get_url(path="/favicon.ico") }}'>
<link rel="stylesheet" href='{{ get_url(path="/css/index.css") }}'>
</head>
<body>
{% block content %} {% endblock %}
<p class="built-with-zola">Built with <a href="https://getzola.org">zola</a></p>
</body>
</html>