1
0
forked from finn/site
site/backend/app/templates/base.html
2024-08-01 02:07:49 -07:00

17 lines
268 B
HTML

<!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>