site/backend/app/templates/base.html

17 lines
268 B
HTML
Raw Normal View History

2024-08-01 09:07:49 +00:00
<!doctype html>
<html>
<head>
{% if title %}
<title>{{ title }} - blog</title>
{% else %}
<title>Welcome to blog.</title>
{% endif %}
</head>
<body>
<div>blgo: <a href="/index">home</a></div>
<hr>
{% block content %}{% endblock %}
</body>
</html>