3 %}style="max-height: 60vw"{% endif %}>
{%- assign latest_posts = site.posts -%}
{% if site.latest_posts.limit %}
{% assign latest_posts_limit = site.latest_posts.limit %}
{% else %}
{% assign latest_posts_limit = latest_posts_size %}
{% endif %}
{% for item in latest_posts limit: latest_posts_limit %}
| {{ item.date | date: "%b %-d, %Y" }} |
{% if item.redirect == blank %}
{{ item.title }}
{% elsif item.redirect contains '://' %}
{{ item.title }}
{% else %}
{{ item.title }}
{% endif %}
|
{%- endfor %}
{%- else -%}
No posts so far...
{%- endif %}