From 8fd9861ef2f90c218b265fd122ba65d64133ae43 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 24 Jul 2013 15:10:54 -0700 Subject: attempt for a new design --- _layouts/default.html | 49 ++++++++++++++++++++++++++++++++++--------------- _layouts/post.html | 19 ++----------------- 2 files changed, 36 insertions(+), 32 deletions(-) (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html index 3bd47db..812ebf5 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -25,25 +25,44 @@ -
- - + diff --git a/_layouts/post.html b/_layouts/post.html index 2b83f8a..25c2ace 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,21 +2,6 @@ layout: default --- -
-
-

- {{ page.title }} -

+

{{ page.title }}

-
- {{ content }} -
- - -
-
+
{{ content }}
-- cgit v1.2.3 From b42718f7d9aac88a3048c616193f81deff49e401 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 25 Jul 2013 18:19:52 -0700 Subject: First attempt with the new theme. --- _layouts/page.html | 38 +++++++++++++++++++++++++++++++++++ _layouts/post.html | 59 +++++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 92 insertions(+), 5 deletions(-) create mode 100644 _layouts/page.html (limited to '_layouts') diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..2ac2b93 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,38 @@ + + + + + + +{% include head.html %} + + + + +{% include browser-upgrade.html %} +{% include navigation.html %} + +
+
+ {% if page.image.feature %}{{ page.title }}{% endif %} +
+
+

{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}

{% endif %} +
+
+ {{ content }} +
+
+
+
+ + + +{% include scripts.html %} + + + \ No newline at end of file diff --git a/_layouts/post.html b/_layouts/post.html index 25c2ace..6bf4aca 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,7 +1,56 @@ ---- -layout: default ---- + + + + + + +{% include head.html %} + -

{{ page.title }}

+ -
{{ content }}
+{% include browser-upgrade.html %} +{% include navigation.html %} + +
+
+ {% if page.image.feature %}{{ page.title }}{% endif %} +
+
+ +

{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}

+
+
+ {{ site.owner.name }} photo + + + {% if page.modified %}{% endif %} + {% if site.disqus_shortname and page.comments %} Comment{% endif %} + Permalink +
+
+ {{ content }} + {% if site.disqus_shortname and page.comments %}
{% endif %} +
+
+ +
+
+ + + +{% include scripts.html %} + + + -- cgit v1.2.3 From 87f077170e2b721e3521f8fbd48442a828e56659 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 25 Jul 2013 18:24:40 -0700 Subject: remove unused layout templates. --- _layouts/default.html | 68 --------------------------------------------------- _layouts/static.html | 0 2 files changed, 68 deletions(-) delete mode 100644 _layouts/default.html delete mode 100644 _layouts/static.html (limited to '_layouts') diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index 812ebf5..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - {{ page.title }} - - - - - - - - - - - - - - {% include analytics.html %} - - - - - - - - -
- - - -
- {{ content }} -
- -
- -
- - - - - diff --git a/_layouts/static.html b/_layouts/static.html deleted file mode 100644 index e69de29..0000000 -- cgit v1.2.3