Rocket/examples/templating/templates/tera/base.html.tera

17 lines
327 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tera Demo - {{ title }}</title>
</head>
<body>
<a href="/tera/hello/Unknown">Hello</a> | <a href="/tera/about">About</a>
{% block content %}{% endblock content %}
<footer>
<a href="/">Home</a>
</footer>
</body>
</html>