Files
www_threefold_io/templates/_default/base.html
2022-04-17 14:14:00 +02:00

18 lines
410 B
HTML

<!DOCTYPE html>
<html lang="en" charset="utf-8">
{% include "partials/head.html" %}
{% include "partials/header.html" %}
<body>
<div id="content" class="p-8 pt-12 sm:p-12 md:p-16 lg:p-20">
{% block content %}{% endblock %}
</div>
<div class="p-8">
{% include "partials/footer.html" %}
</div>
<script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
</body>
</html>