atst/templates/base.html.to
2018-05-23 08:50:33 -04:00

15 lines
298 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}your title here{% end %}</title>
</head>
<h1>{% block title %}your title here again{% end %}</h1>
<body>
<ul>
{% block content %}
your content goes here
{% end %}
</ul>
</body>
</html>