mb/templates/layout.html.tera
2025-08-20 09:35:25 +03:00

29 lines
No EOL
1.1 KiB
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ meta_title }}</title>
{% if description %}
<meta name="description" content="{{ description }}" />
{% endif %}
<link rel="stylesheet" type="text/css" href="/theme/default.css?v={{ version }}" />
</head>
<body>
<header>
<a href="{{ home }}">{{ title }}</a>
{% if description %}<p>{{ description }}</p>{% endif %}
<form action="/" method="GET">
{% if token %}<input type="hidden" name="token" value="{{ token }}" />{% endif %}
<input type="text" name="search" value="{% if search %}{{ search }}{% endif %}" placeholder="Search..."
/><input type="submit" value="Search" />
</form>
<div>
<a href="/rss">RSS</a> |
<a href="https://github.com/yggverse/mb" title="v{{ version }}">GitHub</a>
</div>
</header>
<main>
{% block content %}{% endblock content %}
</main>
</body>
</html>