diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:24:21 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-03 05:24:21 +0200 |
commit | 5bae43b46cd5dd399836f8e326ee128373c1a855 (patch) | |
tree | 2dec21fd6ebb05379a63cddfb7656599ab6b8a92 /source/_includes/article.html | |
parent | 175edf60a22b7cab43b02ac0897e254dd1ff544c (diff) | |
download | octopress-theme-jeyzu-5bae43b46cd5dd399836f8e326ee128373c1a855.zip octopress-theme-jeyzu-5bae43b46cd5dd399836f8e326ee128373c1a855.tar.gz |
simplify post
Diffstat (limited to 'source/_includes/article.html')
-rw-r--r-- | source/_includes/article.html | 40 |
1 files changed, 17 insertions, 23 deletions
diff --git a/source/_includes/article.html b/source/_includes/article.html index a766bb7..1e1c835 100644 --- a/source/_includes/article.html +++ b/source/_includes/article.html @@ -1,25 +1,19 @@ {% if index %} - <h1 class="title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1> - <div class="entry"> - {{ content | excerpt }} - {% capture excerpted %}{{ content | has_excerpt }}{% endcapture %} - {% if excerpted == 'true' %}<a href="{{ root_url }}{{ post.url }}" class="more-link">{{ site.excerpt_link }}</a>{% endif %} - </div> - <div class="meta"> - <div class="date">{% include post/date.html %}{{ time }}</div> - <div class="tags">{% include post/categories.html %}</div> - {% if site.disqus_short_name and post.comments == true and site.disqus_show_comment_count == true %} - <span class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></span> - {% endif %} - </div> + <h1 class="title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1> + <div class="entry-content"> + {{ content | excerpt }} + {% capture excerpted %}{{ content | has_excerpt }}{% endcapture %} + {% if excerpted == 'true' %}<a href="{{ root_url }}{{ post.url }}" class="more-link">{{ site.excerpt_link }}</a>{% endif %} + </div> {% else %} - <h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1> - <div class="entry">{{ content }}</div> - <div class="meta"> - <div class="date">{% include post/date.html %}{{ time }}</div> - <div class="tags">{% include post/categories.html %}</div> - {% if site.disqus_short_name and page.comments == true and site.disqus_show_comment_count == true %} - <span class="comments"><a href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a></span> - {% endif %} - </div> -{% endif %}
\ No newline at end of file + <h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1> + <div class="entry-content">{{ content }}</div> +{% endif %} + +<div class="meta"> + <div class="date">{% include post/date.html %}{{ time }}</div> + <div class="tags">{% include post/categories.html %}</div> + {% if site.disqus_short_name and site.disqus_show_comment_count == true %} + <span class="comments"><a href="{{ root_url }}{{ post.url }}{{ page.url }}#disqus_thread">Comments</a></span> + {% endif %} +</div>
\ No newline at end of file |