1
0
Fork 0
Rust-Rocket-Project/views/layout.html.tera
2021-07-08 23:29:40 +02:00

15 lines
No EOL
234 B
Text

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