the-maintainers/templates/base.html

16 lines
355 B
HTML
Raw Permalink Normal View History

2016-06-29 05:03:21 +00:00
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="{% static "base.css" %}" />
<title>{% block title %}Handy Recovery Pass{% endblock %}</title>
</head>
<body>
<div class="container">
<a href="/search/">Return to search</a>
{% block content %}{% endblock %}
</div>
</body>
</html>