1a5ba523a2f9cbcce2c91e0502e992db220b7011
[recipes.git] / backend / templates / view_recipe.html
1 {% extends "base_with_list.html" %}
2
3 {% block content %}
4
5 <h2 class="recipe-title" >{{ current_recipe.title }}</h2>
6
7 {% match current_recipe.description %}
8 {% when Some with (description) %}
9 <div class="recipe-description" >
10 {{ description|markdown }}
11 </div>
12 {% when None %}
13 {% endmatch %}
14
15 {% endblock %}