From f2b576b6b3e0eb9ee3506f98e23caeefd86b9054 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sat, 7 Sep 2013 10:12:25 -0400 Subject: [PATCH] Remove headline wrap and fix schema tag on post/page title's --- _layouts/home.html | 3 +-- _layouts/page.html | 4 +--- _layouts/post-index.html | 5 +---- _layouts/post.html | 2 +- assets/css/ie.css | 3 --- assets/css/main.css | 3 --- assets/less/page.less | 15 --------------- 7 files changed, 4 insertions(+), 31 deletions(-) diff --git a/_layouts/home.html b/_layouts/home.html index c4b3603..601c569 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -23,8 +23,7 @@
- View all articles -

Latest Articles

+

Articles


{% for post in site.categories.articles limit:5 %}
diff --git a/_layouts/page.html b/_layouts/page.html index 91b15a2..9466931 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -23,9 +23,7 @@ {% include author-bio.html %}
-
-

{{ page.title }}

-
+

{{ page.title }}

{{ content }}
diff --git a/_layouts/post-index.html b/_layouts/post-index.html index fef4e8a..15b93df 100644 --- a/_layouts/post-index.html +++ b/_layouts/post-index.html @@ -14,10 +14,6 @@ {% include navigation.html %}
-
-

{{ page.title }}

- {% if page.tagline %}

{{ page.tagline }}

{% endif %} -
{{ page.title }} feature image
@@ -26,6 +22,7 @@
+

{{ page.title }}

{% for post in site.posts %} {% unless post.next %}

{{ post.date | date: '%Y' }}

diff --git a/_layouts/post.html b/_layouts/post.html index ec81d44..234d714 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -24,7 +24,7 @@
-

{{ page.title }}

+

{{ page.title }}

{{ page.tagline }}

diff --git a/assets/css/ie.css b/assets/css/ie.css index 23dd898..e6031c6 100644 --- a/assets/css/ie.css +++ b/assets/css/ie.css @@ -1124,9 +1124,6 @@ body { color: #ffffff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); } -.headline-wrap h2 { - text-transform: uppercase; -} .byline { clear: both; font-size: 80%; diff --git a/assets/css/main.css b/assets/css/main.css index 2e4aca1..3312e5b 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1481,9 +1481,6 @@ body { color: #ffffff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); } -.headline-wrap h2 { - text-transform: uppercase; -} .byline { clear: both; font-size: 80%; diff --git a/assets/less/page.less b/assets/less/page.less index a128dec..1f6cc7b 100644 --- a/assets/less/page.less +++ b/assets/less/page.less @@ -99,21 +99,6 @@ body { } } } -.headline-wrap { - h1 { - - } - h2 { - text-transform: uppercase; - } -} -.article-wrap { - h2 { - - } - h3 { - } -} .byline { clear: both; font-size: 80%; -- 2.43.0