mirror of https://github.com/rwf2/Rocket.git
12 lines
223 B
Plaintext
12 lines
223 B
Plaintext
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Rocket Example - {{ title }}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include "minijinja/nav" %}
|
||
|
{% block page %}{% endblock %}
|
||
|
{% include "minijinja/footer" %}
|
||
|
</body>
|
||
|
</html>
|