Rename classes for consistency

This commit is contained in:
Michael Rose
2016-02-22 21:44:55 -05:00
parent a572dbaae0
commit ddb78bf337
5 changed files with 57 additions and 88 deletions

@ -6,7 +6,7 @@
{% include head.html %}
</head>
<body class="{{ layout.class }}">
<body>
{% include browser-upgrade.html %}
{% include navigation.html %}
@ -14,7 +14,7 @@
{% if page.image.feature %}
<div class="image-wrap">
<img src=
{% if page.image.feature contains 'http' %}
{% if page.image.feature contains "http" %}
"{{ page.image.feature }}"
{% else %}
"{{ page.image.feature | prepend: "/images/" | prepend: absurl }}"
@ -27,8 +27,8 @@
{% endif %}
<div id="main" role="main">
<div class="article-author-side">
{% include author-bio.html %}
<div class="author-profile">
{% include author-profile.html %}
</div>
{{ content }}
</div><!-- /#main -->

@ -4,7 +4,7 @@ layout: default
{% include absolute-url.liquid %}
<div id="index">
<div class="archive">
<h3><a href="{{ absurl }}/posts/">Recent Posts</a></h3>
{% for post in site.posts limit:5 %}
<article>

@ -4,7 +4,7 @@ layout: default
{% include absolute-url.liquid %}
<div id="index">
<div class="archive">
<h1>{{ page.title }}</h1>
{% capture written_year %}'None'{% endcapture %}
{% for post in site.posts %}
@ -22,4 +22,4 @@ layout: default
{% endif %}
</article>
{% endfor %}
</div><!-- /#index -->
</div><!-- /.archive -->