{{ page.title | default:strings.home | default:"Home" }}
{% include components/message.html text=page.description hide=page.hide_description %}
{{ content }}
{% if page.show_music %}
{% assign music_posts = site.categories.Music %}
{% if music_posts.size > 0 %}
{{ strings.music | default:"Music" }}
{% include_cached components/hy-img.html img=music_posts.first.image alt=music_posts.first.title %}
{% for post in music_posts limit:5 %}
{% include_cached components/post-list-item.html post=post %}
{% endfor %}
{% endif %}
{% endif %}
{% if page.show_pages %}
{% assign pages = site.html_pages | where_exp:"item","item.layout == 'page' or item.layout == 'about'" | where_exp:"page","page.sitemap != false" %}
{% if pages.size > 0 %}
{{ strings.pages | default:"Pages" }}
{% endif %}
{% endif %}
{% if page.show_visual %}
{% if site.featured_categories.size > 0 %}
{{ strings.Visual | default:"Visual" }}
{% assign posts = site.posts | where_exp: "post", "post.categories.first != 'Music'" %}
{% include_cached components/hy-img.html img=posts.first.image alt=posts.first.title %}
{% assign categories = site.featured_categories | where_exp: "category", "category.title != 'Music'" %}
{% for category in categories %}
-
{{category.title}}
{{ site.categories[category.title].size }}
{% endfor %}
{% endif %}
{% endif %}