1
0
Fork 0
forked from 2sys/shoutdotdev
shoutdotdev/templates/base.html

14 lines
382 B
HTML
Raw Normal View History

2024-11-01 00:07:33 -07:00
<!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>