---
layout: archive
title: Articles 2013
permalink: /2013/
body_class: "archive"
description: "An overview of all articles available on this website with title and date of publication of 2013."
robots: "noindex,follow"
sitemap:
exclude: true
---
{% if page.title or post.title %}
{{ page.title }}
{% else %}
{{ site.data.settings.title }}
{% endif %}
{% assign sorted = site.posts | sort:"date" | reverse %}
{% for post in sorted %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2013" %}
{% include archive_post.html %}
{% endif %}
{% endfor %}