Sha256: 2c388411137ed934a4dab9ddadafc512e793fa5af58eeb3c4e0f7dfb7433ecf4
Contents?: true
Size: 1.67 KB
Versions: 6
Compression:
Stored size: 1.67 KB
Contents
{% capture icon %} {% case post.format %} {% when 'gallery' or 'image' %} <i class='fa fa-picture-o'></i> {% when 'video' %} <i class='fa fa-film'></i> {% when 'link' %} <i class='fa fa-link'></i> {% else %} {% endcase %} {% endcapture %} <header> <h2 itemprop='headline'> <a href='{{ post.url }}' itemprop='url'> {{ icon }}{{ post.title }} </a> </h2> {% include meta.html %} </header> <section itemProp='articleBody'> {% if post.format == "gallery" %} {{ post.excerpt }} This Gallery contains {{ post.images }} photos. {% else %} {% if post.video %}<iframe width='560' height='315' src='//www.youtube.com/embed/{{post.video}}?rel=0' frameborder='0' allowfullscreen itemProp='video'></iframe><br/>{% endif %} {% if post.image %}<img src="{{ post.image }}" title="{{ post.title }}" alt="{{ post.title }}"{% if post.format != 'image' %} class='alignleft post-thumb'{% endif %} />{% endif %} {% if post.description %}{{ post.description }}{% else %}{{ post.content | markdownify | strip_html | truncatewords: 125 }}{% endif %} {% endif %} </section> <footer> <a class='read-more' href='{{ post.url }}' itemprop='url'>read more <i class='fa fa-chevron-right'></i></a> </footer>
Version data entries
6 entries across 6 versions & 1 rubygems