{% extends "base.html" %} {% import "partials/detail_cards.html" as detail %} {% import "partials/icons.html" as icons %} {% block title %}Brewlog · {{ cafe.name }}{% endblock %} {% block og_title %}{{ cafe.name }} — Brewlog{% endblock %} {% block og_description %}{{ cafe.name }} — {{ cafe.city }}, {{ cafe.country_flag }} {{ cafe.country }}{% endblock %} {% block head %}{% endblock %} {% block content %}

{{ cafe.name }}

{{ cafe.city }}, {{ cafe.country_flag }} {{ cafe.country }} · Added {{ cafe.created_date }}

Details

City
{{ cafe.city }}
Country
{% if !cafe.country_flag.is_empty() %}{{ cafe.country_flag }} {% endif %}{{ cafe.country }}
{% if let Some(url) = cafe.website %}
Website
Visit Website
{% endif %}
{{ detail::map_with_legend_1(cafe.map_countries, cafe.map_max, "Cafe", "") }}
{% if is_authenticated %}
{% endif %} {% endblock %}