---
layout: page
title: News
permalink: /news/
redirect_from:
- /news-and-reviews/
pagination:
enabled: true
collection: posts
per_page: 8
permalink: '/:num/'
limit: 0
sort_field: 'date'
sort_reverse: true
---
{% for post in paginator.posts %}
{% assign fmt_posted_on = '{{ post_date }}' %}
{% assign formatted_post_date = post.date | date: "%F" %}
{{ site.data.strings.news.posted_on | replace: fmt_posted_on, formatted_post_date }}
{% if post.author %}
{{ site.data.strings.news.by }}
{% if post.authorWebsite %}
{% endif %}
{{ post.author }}
{% if post.authorWebsite %}
{% endif %}
{% endif %}
{{ post.excerpt | strip_html | truncatewords: 50 }}
{% endfor %}
{% if paginator.total_pages > 1 %}
{% endif %}