aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_includes/article.html
blob: 69bb500817d1824d440a78478de1417eda4f90cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% unless page.no_header %}
  <header>
    {% if index %}
      <h1 class="entry-title"><a href="{{ site.root }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
    {% else %}
      <h1 class="entry-title">{{ page.title | titlecase }}</h1>
    {% endif %}
    {% unless page.meta == false %}
      <p class="meta">{% include post/date.html %}</p>
    {% endunless %}
  </header>
{% endunless %}
{% if index %}
  <div class="entry-content">{{ content | exerpt | smart_quotes }}</div>
  <footer>
    <a rel="full-article" href="{{ site.root }}{{ post.url }}">Read on &rarr;</a>
  </footer>
{% else %}
<div class="entry-content">{{ content | smart_quotes }}</div>
{% endif %}