tabletop-frog/ttfrog/assets/templates/base.html

14 lines
424 B
HTML
Raw Normal View History

2024-01-31 22:39:54 -08:00
<!doctype html>
<html lang="en">
<head>
2024-02-02 15:40:45 -08:00
<title>{{ c['config']['project_name'] }}{% block title %}{% endblock %}</title>
<meta name="og:provider_name" content="{{ c['config']['project_name'] }}">
<link rel='stylesheet' href="{{c['config']['static_url']}}/styles.css" />
2024-01-31 22:39:54 -08:00
{% block headers %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
{% block debug %}{% endblock %}
</body>
</html>