{% extends "layout.html" %}
{% load i18n static thumbnail useragent bootstrap4 %}
{% block title %}Coffee Subscription - Freshly Roasted Specialty & Gourmet Coffees & Brewing Equipment{{ block.super }}{% endblock %}
{% block navigation %}
    {% include "partials/nav_primary.html" with expand_dropdown=1 %}
{% endblock %}
{% block description %}Sustainably grown and ethically produced, lovingly roasted and caringly packed, then sent to your
    doorstep within a week of roasting. Hook Drip Bag, V60 Dripper, French Press, Stovetop, Aeropress, Espresso, Cold
    Brew{% endblock %}
{% block header %}{% endblock %}
{% block body_class %}home-page{% endblock %}
{% block header_image %}
    {% is_mobile as is_mobile %}
    {% if is_mobile %}
        {% include 'promotions/partials/home/home_header_mobile.html' %}
    {% else %}
        {% include 'promotions/partials/home/home_header.html' %}
    {% endif %}
{% endblock %}
{% block content %}
    {% include 'promotions/partials/home/experience.html' %}
    {% include 'promotions/partials/home/how_it_works.html' %}
    {% include 'promotions/partials/home/testimonials.html' %}
    {% include 'promotions/partials/home/three_reasons.html' %}
    {% if not request.user.is_authenticated %}
        {% include 'promotions/partials/home/featured_product.html' with product=featured_product %}
    {% endif %}
    {% comment %}
    {% include 'promotions/partials/home/coffee_plan.html' %}
    {% endcomment %}
    {% include 'promotions/partials/home/workshop.html' %}
    {% include 'promotions/partials/home/instagram_feed.html' %}
{% endblock content %}
{% block footer %}
    {{ block.super }}
{% endblock %}
{% block scripts %}
    {{ block.super }}
    
{% endblock %}