Sha256: c5602a01244f06fbf000553c987208fbad3e2a2003d61c60c44b7b9efb6ebb19

Contents?: true

Size: 1.81 KB

Versions: 10

Compression:

Stored size: 1.81 KB

Contents

{% assign post = include.post %}
{% assign link_title = include.link_title %}

<article id="post{{ post.id | replace:'/','-' }}" class="page post{% if link_title %} mb6{% endif %}" role="article">
  <header>
    <h1 class="post-title">
      {% if link_title %}<a href="{{ post.url | relative_url }}" class="flip-title">{% endif %}
        {{ post.title }}
      {% if link_title %}</a>{% endif %}
    </h1>

    <p class="post-date heading">
      {% assign post_format = site.data.strings.date_formats.post | default:"%d %b %Y" %}
      <time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date:post_format }}</time>
      {% assign category_start     = site.data.strings.category_start     | default:"in " %}
      {% assign tag_start          = site.data.strings.tag_start          | default:"on " %}
      {% assign category_separator = site.data.strings.category_separator | default:" / " %}
      {% assign tag_separator      = site.data.strings.tag_separator      | default:", "  %}
      {% include tag-list.html tags=post.categories meta=site.featured_categories start_with=category_start separator=category_separator %}
      {% include tag-list.html tags=post.tags meta=site.featured_tags start_with=tag_start separator=tag_separator %}
    </p>

    {% include message.html text=post.description hide=page.hide_description %}
  </header>

  {% unless include.excerpt %}
    {{ post.content }}
  {% else %}
    {{ post.excerpt }}
    {% capture post_title %}<a class="heading flip-title" href="{{ post.url | relative_url }}">{{ post.title }}</a>{% endcapture %}
    {% assign text = site.data.strings.continue_reading | default:"Continue reading <!--post_title-->" %}
    <footer>
      <p class="read-more">
        {{ text | replace:"<!--post_title-->", post_title }}
      </p>
    </footer>
  {% endunless %}
</article>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-7.5.2 _includes/post.html
jekyll-theme-hydejack-7.5.1 _includes/post.html
jekyll-theme-hydejack-7.5.0 _includes/post.html
jekyll-theme-hydejack-7.4.2 _includes/post.html
jekyll-theme-hydejack-7.4.1 _includes/post.html
jekyll-theme-hydejack-7.4.0 _includes/post.html
jekyll-theme-hydejack-7.3.0 _includes/post.html
jekyll-theme-hydejack-7.2.0 _includes/post.html
jekyll-theme-hydejack-7.1.1 _includes/post.html
jekyll-theme-hydejack-7.1.0 _includes/post.html