mirror of
https://github.com/YGGverse/rssto.git
synced 2026-03-31 17:15:29 +00:00
22 lines
No EOL
683 B
Text
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> |