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

14 lines
402 B
HTML
Raw Normal View History

2024-01-31 22:39:54 -08:00
<!doctype html>
<html lang="en">
<head>
2024-02-04 11:40:30 -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.routes.static}}/styles.css" />
2024-01-31 22:39:54 -08:00
{% block headers %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
{% block debug %}{% endblock %}
</body>
</html>