25 lines
No EOL
617 B
HTML
25 lines
No EOL
617 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{% include "head.html" %}
|
|
</head>
|
|
<body>
|
|
<!-- The sidebar -->
|
|
<div class="left-sidebar">
|
|
{% include "alt-sidebar.html" %}
|
|
</div>
|
|
|
|
<!-- Page content -->
|
|
<div class="page-content">
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</div>
|
|
</div>
|
|
{% 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>
|
|
{% endblock js %}
|
|
</body>
|
|
</html> |