rssto/crates/http/templates/layout.html.tera
2026-01-08 00:25:32 +02:00

22 lines
No EOL
683 B
Text

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ title }}</title>
{% if meta.description %}
<meta name="description" content="{{ meta.description }}" />
{% endif %}
</head>
<body>
<header>
<h1><a href="/">{{ meta.title }}</a></h1>
<form action="/" method="GET">
<input type="text" name="search" value="{% if search %}{{ search }}{% endif %}" placeholder="Keyword..." />
<input type="submit" value="Search" />
</form>
</header>
<main>
{% block content %}{% endblock content %}
</main>
</body>
</html>