From 90414ed0ea85a3db0d4ab2842ca1c833c2b0a80b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 14 May 2016 14:26:44 +0100 Subject: [PATCH] Add index template --- {theme/templates => content/pages}/index.html | 82 +++---------------- theme/templates/base.html | 68 +++++++++++++++ theme/templates/page-home.html | 5 ++ 3 files changed, 85 insertions(+), 70 deletions(-) rename {theme/templates => content/pages}/index.html (73%) create mode 100644 theme/templates/base.html create mode 100644 theme/templates/page-home.html diff --git a/theme/templates/index.html b/content/pages/index.html similarity index 73% rename from theme/templates/index.html rename to content/pages/index.html index 4140884..0942a74 100644 --- a/theme/templates/index.html +++ b/content/pages/index.html @@ -1,61 +1,11 @@ - - - - - - - - - - - Creative - Start Bootstrap Theme - - - - - - + + + + - - - - - -
+ +

Your Favorite Source of Free Bootstrap Themes

@@ -127,7 +77,7 @@
- +
@@ -142,7 +92,7 @@
- +
@@ -157,7 +107,7 @@
- +
@@ -172,7 +122,7 @@
- +
@@ -187,7 +137,7 @@
- +
@@ -202,7 +152,7 @@
- +
@@ -247,12 +197,4 @@
- - - - - - - - diff --git a/theme/templates/base.html b/theme/templates/base.html new file mode 100644 index 0000000..2eb7438 --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + Creative - Start Bootstrap Theme + + + + + + + + + + +
+ + {% block content %}{% endblock %} + + + + + + + + + + diff --git a/theme/templates/page-home.html b/theme/templates/page-home.html new file mode 100644 index 0000000..d8c29f7 --- /dev/null +++ b/theme/templates/page-home.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} + {{ page.content }} +{% endblock %}