Hello, world

This commit is contained in:
Brian Duggan
2018-05-22 13:37:51 -04:00
parent 6349f7e60e
commit 29248ed76e
4 changed files with 59 additions and 0 deletions

14
templates/base.html.to Normal file
View File

@@ -0,0 +1,14 @@
<!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>