18 lines
513 B
HTML
18 lines
513 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0" />
|
|
<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 +}} - {{+ crate::GIT_HASH }}</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|