{% extends "base.html" %} {% import "partials/icons.html" as icons %} {% block title %}Brewlog · {{ cup.roast_name }} at {{ cup.cafe_name }}{% endblock %} {% block description %}{{ cup.roast_name }} by {{ cup.roaster_name }} at {{ cup.cafe_name }}, {{ cup.cafe_city }}.{% endblock %} {% block og_title %}{{ cup.roast_name }} at {{ cup.cafe_name }} — Brewlog{% endblock %} {% block og_description %}{{ cup.roast_name }} by {{ cup.roaster_name }} at {{ cup.cafe_name }}, {{ cup.cafe_city }}.{% endblock %} {% block head %}{% endblock %} {% block content %}

{{ cup.roast_name }}

{{ cup.roaster_name }} · {{ cup.cafe_name }}, {{ cup.cafe_city }} · {{ cup.created_date }}

{# ── Coffee + map ── #}

Coffee

Roast
{{ cup.roast_name }}
Roaster
{{ cup.roaster_name }}
{% if cup.origin != "\u{2014}" %}
Origin
{% if !cup.origin_flag.is_empty() %}{{ cup.origin_flag }} {% endif %}{{ cup.origin }}
{% endif %} {% if cup.region != "\u{2014}" %}
Region
{{ cup.region }}
{% endif %} {% if cup.producer != "\u{2014}" %}
Producer
{{ cup.producer }}
{% endif %} {% if cup.process != "\u{2014}" %}
Process
{{ cup.process }}
{% endif %}
{% if !cup.tasting_notes.is_empty() %}
{% for note in cup.tasting_notes %} {{ note.label }} {% endfor %}
{% endif %}
{% if !cup.map_countries.is_empty() %}
Cafe Origin Roaster
{% endif %}
{# ── Roaster & cafe ── #}

Roaster

Name
{{ cup.roaster_name }}
Country
{% if !cup.roaster_country_flag.is_empty() %}{{ cup.roaster_country_flag }} {% endif %}{{ cup.roaster_country }}
{% if let Some(city) = cup.roaster_city %}
City
{{ city }}
{% endif %} {% if let Some(url) = cup.roaster_homepage %}
Website
Visit Website
{% endif %}

Cafe

Name
{{ cup.cafe_name }}
City
{{ cup.cafe_city }}
Country
{% if !cup.cafe_country_flag.is_empty() %}{{ cup.cafe_country_flag }} {% endif %}{{ cup.cafe_country }}
{% if let Some(url) = cup.cafe_website %}
Website
Visit Website
{% endif %}
{% endblock %}