Sha256: 1fb91b77dc38b9bd726b12030555ceee90aaa3441372e13a45041fab1f1293f7

Contents?: true

Size: 1010 Bytes

Versions: 9

Compression:

Stored size: 1010 Bytes

Contents

{% if post %}
{% elsif page %}
  {% assign post = page %}
{% endif %}
<section id="{{ post.id | sha1:8 }}" class="active">
  {% include post_header.html %}
  {% if site.download_url == "" or site.download_url == nil %}
    {% assign download_url = site.url | append: '/episodes' %}
  {% else %}
    {% assign download_url = site.download_url %}
  {% endif %}
  {{ post.content }}
    {% if post.audio %}
      {% for file in post.audio %}
      <a class="btn btn-primary" href="{{ download_url }}/{{ file.last }}">Download .{{ file.first }} ({{ file.last | file_size:'./' | string_of_size }})</a>
      {% endfor %}
    {% endif %}
  <hr>
  {{ site | flattr_button:post }}
  <a href="https://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{post.url }}" data-text="{{ post.title }}">Tweet</a>
  {% unless page.url == '/index.html' %}{% include disqus_thread.html %}{% endunless %}
  {% unless page.url == '/index.html' %}{% include isso_thread.html %}{% endunless %}
  <hr>
</section>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-octopod-0.9.0 assets/_includes/post.html
jekyll-octopod-0.8.9 assets/_includes/post.html
jekyll-octopod-0.8.8 assets/_includes/post.html
jekyll-octopod-0.8.7 assets/_includes/post.html
jekyll-octopod-0.8.6 assets/_includes/post.html
jekyll-octopod-0.8.5 assets/_includes/post.html
jekyll-octopod-0.8.4 assets/_includes/post.html
jekyll-octopod-0.8.3 assets/_includes/post.html
jekyll-octopod-0.8.2 assets/_includes/post.html