{% comment %} Recent Posts Displayed here. {% endcomment %}

Recent Posts

{% for post in site.posts limit: 3 %} {% assign timeframe = 604800 %} {% assign post_in_seconds = post.date | date: "%s" | plus: 0 %} {% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
{% if post.image.thumb %} {% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.name %} {% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.path %} {% capture image_path %}{{post.image.path | remove_first: '/'}}{% endcapture %} {% capture full_path %}{{post.image.path }}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image %} {% capture image_path %}{{post.image | remove_first: '/'}}{% endcapture %} {% capture full_path %}{{post.image }}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% else %} {{post.title}} {% endif %}
{{post.title | truncate: 40}}
{{post.date | date: "%A, %B %-d, %Y" }} {% if post_in_seconds > recent_posts %} New {% endif %}
{% endfor %}
{% comment %} Other Posts {% endcomment %}

Other Posts

{% assign posts = site.posts | sample:5 %} {% for post in posts %} {% assign timeframe = 604800 %} {% assign post_in_seconds = post.date | date: "%s" | plus: 0 %} {% assign recent_posts = "now" | date: "%s" | minus: timeframe %}
{% if post.image.thumb %} {% capture image_path %}{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}thumbs/{{post.image.thumb}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.name %} {% capture image_path %}{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% capture full_path %}/{{site.blog_images_dir}}{{post.image.name}}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image.path %} {% capture image_path %}{{post.image.path | remove_first: '/' }}{% endcapture %} {% capture full_path %}{{post.image.path }}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% elsif post.image %} {% capture image_path %}{{post.image | remove_first: '/' }}{% endcapture %} {% capture full_path %}{{post.image }}{% endcapture %} {% responsive_image_block %} template: _includes/thumb.html path: {{ image_path }} fullpath: {{ full_path }} {% if post.title %} title: {{ post.title | slugify: "ascii"}} alt: {{ post.title | slugify: "ascii"}} {% endif %} {% endresponsive_image_block %} {% else %} {{post.title}} {% endif %}
{{post.title | truncate: 40}}
{{post.date | date: "%A, %B %-d, %Y" }} {% if post_in_seconds > recent_posts %} New {% endif %}
{% endfor %}
{% if site.data.settings.blog.sidebar.custom-include %} {% include {{site.data.settings.blog.sidebar.custom-include}} %} {% endif %}