Haxing up some templates.
This commit is contained in:
parent
7e26270b2c
commit
f893d913c8
10
site/templates/base.html
Normal file
10
site/templates/base.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Welcome!{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Hello, World
|
||||
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user