This commit is contained in:
Fergal Moran
2015-11-08 21:56:09 +00:00
parent 60559a55c4
commit 9153ec8d22
3 changed files with 17 additions and 10 deletions

View File

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>

View File

@@ -1,10 +1,4 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
{% extends 'embedding/master.html' %}
{% block content %}
<h1>Hello Sailor</h1>
{% endblock %}