webbed-site/templates/base.html

25 lines
617 B
HTML
Raw Normal View History

2024-07-07 20:53:05 -05:00
<!DOCTYPE html>
<html lang="en">
2024-09-13 20:20:08 -05:00
2024-07-07 08:27:18 -05:00
<head>
2024-09-13 20:20:08 -05:00
{% include "head.html" %}
2024-07-07 08:27:18 -05:00
</head>
<body>
2024-09-13 20:20:08 -05:00
<!-- The sidebar -->
<div class="left-sidebar">
{% include "alt-sidebar.html" %}
2024-07-07 21:44:01 -05:00
</div>
2024-09-13 20:20:08 -05:00
<!-- Page content -->
<div class="page-content">
{% block content %}
{% endblock content %}
2024-07-07 08:27:18 -05:00
</div>
2024-09-13 23:41:43 -05:00
</div>
2024-09-13 20:20:08 -05:00
{% 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>
<script src="{{ get_url(path='js/theme.js', trailing_slash=false) | safe }}" defer></script>
2024-09-13 20:20:08 -05:00
{% endblock js %}
2024-07-07 08:27:18 -05:00
</body>
</html>