18 lines
444 B
HTML
18 lines
444 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/common/base.css") }}"></link>
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
<footer>
|
|
<p>v{{ crate::VERSION }}</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|