{% extends "pages/page.html" %} {% load static mezzanine_tags blog_tags keyword_tags %} {% block extra_head %} {% endblock %} {% block main_wrapper %} {% block homerotation %}
{# for displaying single image, 0 is the first slide #} {# #}
{% for blub in page.homepage.blurbs.all|slice:"0:1" %}

{{ blub.title }}

{{ blub.content|richtext_filters|safe }}

{% endfor %}
{# {% for blub in page.homepage.blurbs.all|slice:"1:2" %} #} {# {% endfor %} #}
{% endblock %}
{% block main %}{{ block.super }}
{{ page.homepage.content|richtext_filters|safe }}
{% endblock %}

News & Updates

{% blog_recent_posts 1 as recent_posts %} {% for post in recent_posts %}
{{ post.title }}

{{ post.title }}

{{ post.description_from_content|safe|truncatewords_html:14 }}

Read More {% endfor %}

Potential Crops

{% for blub in page.homepage.blurbs.all|slice:"2:3" %}
{{ blub.title }}

{{ blub.title }}

{{ blub.content|richtext_filters|safe }} {% endfor %}
{% endblock %}