blog/source/_includes/article.html

27 lines
1.0 KiB
HTML
Raw Normal View History

2012-06-03 11:40:57 +00:00
{% if index %}
2013-02-10 14:50:28 +00:00
<h2 class="title">
{% if post.external-url %}
<a href="{{ post.external-url }}">
{% else %}
<a href="{{ root_url }}{{ post.url }}">
{% endif %}
{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a>
</h2>
2012-06-03 11:40:57 +00:00
<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 %}
2013-02-10 14:50:28 +00:00
<h2 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h2>
2012-06-03 11:40:57 +00:00
<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 %}
2013-09-06 22:15:18 +00:00
<div class="comments"><a href="{{ root_url }}{% if index %}{{ post.url }}{% endif %}#disqus_thread">Comments</a></div>
2012-06-03 11:40:57 +00:00
{% endif %}
2013-09-06 22:15:18 +00:00
</div>