diff options
author | Mathieu Martin <webmat@gmail.com> | 2012-06-28 14:09:59 +0200 |
---|---|---|
committer | Mathieu Martin <webmat@gmail.com> | 2012-06-28 14:10:58 +0200 |
commit | 40b6cb2f9f35517c866f0f348a7025fc9e80dfe1 (patch) | |
tree | ead19bda9d88ecf4c92628fa1b09a6e4fea57bd6 /source/_layouts | |
parent | a8b459d72b1c50fb380da094c430335e821a860b (diff) | |
download | octopress-theme-jeyzu-40b6cb2f9f35517c866f0f348a7025fc9e80dfe1.zip octopress-theme-jeyzu-40b6cb2f9f35517c866f0f348a7025fc9e80dfe1.tar.gz |
Change the class for page from entry to entry-content, like for blog posts.
Diffstat (limited to 'source/_layouts')
-rw-r--r-- | source/_layouts/page.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/_layouts/page.html b/source/_layouts/page.html index 03c94e8..cf64047 100644 --- a/source/_layouts/page.html +++ b/source/_layouts/page.html @@ -6,7 +6,7 @@ layout: default {% if page.title %} <h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1> {% endif %} - <div class="entry">{{ content }}</div> + <div class="entry-content">{{ content }}</div> </article> {% unless page.footer == false %} {% include post/sharing.html %} @@ -16,4 +16,4 @@ layout: default <h1 class="title">Comments</h1> <div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div> </section> -{% endif %}
\ No newline at end of file +{% endif %} |