Skip to content

Commit

Permalink
renaming and moving templates to layouts within a separate subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
topsitemakers committed Sep 12, 2013
1 parent 4254e3c commit 4a12a23
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion templates/errors/404.html
@@ -1,4 +1,4 @@
{% extends "template.html" %}
{% extends 'layouts/main.html' %}
{% block content %}
<h1>Sorry ...</h1>
<p>There's nothing here!</p>
Expand Down
2 changes: 1 addition & 1 deletion templates/errors/500.html
@@ -1,4 +1,4 @@
{% extends "template.html" %}
{% extends 'layouts/main.html' %}
{% block content %}
<h1>Something's wrong!</h1>
<p>Fortunately we are on the job, and you can just return home!</p>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion templates/pages/home.html
@@ -1,4 +1,4 @@
{% extends "template.html" %}
{% extends 'layouts/main.html' %}
{% block title %} - Home{% endblock %}
{% block content %}
<h1>Welcome!</h1>
Expand Down
2 changes: 1 addition & 1 deletion templates/pages/login.html
@@ -1,4 +1,4 @@
{% extends "template.form.html" %}
{% extends 'layouts/main.html' %}
{% block title %} - Login{% endblock %}
{% block content %}
<h1>Welcome!</h1>
Expand Down
2 changes: 1 addition & 1 deletion templates/pages/register.html
@@ -1,4 +1,4 @@
{% extends "template.html" %}
{% extends 'layouts/main.html' %}
{% block title %} - Register{% endblock %}
{% block content %}
<h1>Welcome!</h1>
Expand Down

0 comments on commit 4a12a23

Please sign in to comment.