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

15 lines
510 B
HTML
Raw Permalink Normal View History

2025-02-26 13:10:50 -08:00
<!doctype html>
<html lang="en" data-bs-theme="dark">
2025-02-26 13:10:50 -08:00
<head>
2025-02-26 13:10:46 -08:00
<title>{% block title %}Shout.dev{% endblock %}</title>
{% include "meta_tags.html" %}
<link rel="stylesheet" href="{{ base_path }}/bootstrap-5.3.3-dist/css/bootstrap.min.css">
2025-04-12 23:05:55 -07:00
<link rel="stylesheet" href="{{ base_path }}/main.css">
2025-02-26 13:10:50 -08:00
</head>
<body>
{% include "nav.html" %}
{% block main %}{% endblock main %}
<script src="{{ base_path }}/bootstrap-5.3.3-dist/js/bootstrap.bundle.min.js"></script>
2025-02-26 13:10:50 -08:00
</body>
</html>