webbed-site/templates/frame.html
2024-09-13 20:20:08 -05:00

20 lines
No EOL
448 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include "head.html" %}
<style>
</style>
</head>
<body>
{% block content %}
<h2>{{ page.title }}</h2>
{{ page.content | safe }}
{% endblock content %}
{% block js %}
<script src="{{ get_url(path='js/script.js', trailing_slash=false) | safe }}" defer></script>
<script src="{{ get_url(path='js/profile.js', trailing_slash=false) | safe }}" defer></script>
{% endblock js %}
</body>
</html>