---
layout: page
permalink: /featured/
title: FEATURED POSTS
description: "An archive of posts sorted by date."
---
{% assign featuredcount = '0' %}
{% for post in site.posts %}
{% if post.featured %}
{% assign featuredcount = featuredcount | plus:'1' %}
- {{ post.title }}
{% endif %}
{% endfor %}
{% if featuredcount == '0' %}
No posts has been featured yet
{% endif %}