1
0
Fork 0
forked from 2sys/shoutdotdev
shoutdotdev/templates/base.html
2025-02-19 23:50:38 -08:00

13 lines
382 B
HTML

<!doctype html>
<html lang="en-US">
<head>
<title>{% block title %}callout.dev{% endblock %}</title>
<link rel="stylesheet" href="{{ base_path }}/static/bulma.min.css">
<link rel="stylesheet" href="{{ base_path }}/static/main.css">
{% block head %}{% endblock %}
</head>
<body>
{% include "nav.html" %}
{% block main %}{% endblock %}
</body>
</html>