Categories:
		{% for category in site.categories %}
		
{{ category | first }} |
		{% endfor %}
		
		
		 All articles: 
		
		{% for category in site.categories %}
		
Articles in category "{{ category | first }}":
		
				{% for posts in category %}
				{% for post in posts %}
				{% if post.url %}
				- {{ post.title }}{% endif %}
				{% endfor %}
				{% endfor %}
		{% endfor %}