khguide/templates/layouts/base.html

19 lines
467 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>{% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>{% include "components/core/style.css"%} </style>
<script>{% include "components/core/script.js"%} </script>
{% block head %}{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<footer>
<p>v{{ crate::VERSION }}</p>
</footer>
</body>
</html>