Last active
March 8, 2017 18:49
-
-
Save seedcms/f685a4501d3ad365fb33dbdb10744dda to your computer and use it in GitHub Desktop.
pressify-content-v1-external-link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="pressify_wrapper cols"> | |
{% paginate blog.articles by 250 %} | |
{% for article in blog.articles %} | |
{% assign externallink = article.metafields.press.externallink %} | |
<div class="box"> | |
<a href="#inline{{forloop.index}}" press-comment="{{ article.metafields.press.comment }}" {% if externallink %}press-url="{{ externallink }}" press-target="_blank"{% else %}press-url="{{ article.url }}" press-target="_self"{% endif %} press-title="{{ article.title }}" article-id="{{article.id}}" press-id="{{forloop.index}}" product-handle="{{ article.metafields.press.product_handle }}" class="go_carousel"> | |
<img src="{{ article.metafields.press.cover }}" style="max-width: 100%;" /> | |
<div class="press-hover-wrapper"> | |
<span class="press-hover">{{ article.title }}</span> | |
</div> | |
</a> | |
<div style="display: none;" id="slides{{forloop.index}}"> | |
{% assign images = article.metafields.press.images | split: '|' %} | |
{% for img in images %} | |
<li><img src="{{ img }}" style="max-height: 330px; max-width: 100%; margin: 0 auto;" /></li> | |
{% endfor %} | |
</div> | |
<span class="press-date">{{ article.created_at | date: "%m. %d. %y" }}</span> | |
</div> | |
{% endfor %} | |
{% endpaginate %} | |
{% include 'pressify-modal' %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment