14 lines
382 B
HTML
14 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>
|