---
layout: "default_with_menu"
---
{%- assign front_cover = site.posts | find: "layout", "front_cover" -%}
{%- assign posts = site.posts | where: "layout", "post" -%}
{%- assign back_cover = site.posts | find: "layout", "back_cover" -%}
{% include card_horizontal.html
src=front_cover.image.path
alt=front_cover.image.alt
title=front_cover.title
subtitle=front_cover.subtitle
content=front_cover.content
%}
{% include divider.html src="public/nettles-small-clear.gif" alt="divider" %}
{% for post in posts %}
{% include cover_post/home.html
authors=post.authors
src=post.image.path
alt=post.title
title=post.title
description=post.description
href=post.url
%}
{% endfor %}
{% include cover_post/home.html title=back_cover.title src=back_cover.image.path alt=back_cover.image.description href=back_cover.url description=back_cover.description %}