Haxing up some templates.

This commit is contained in:
Paul R. Tagliamonte 2013-03-09 22:54:29 -05:00
parent 7e26270b2c
commit f893d913c8
2 changed files with 17 additions and 0 deletions

10
site/templates/base.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>

View File

@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}Welcome!{% endblock %}
{% block content %}
Hello, World
{% endblock %}