Sign out
[recipes.git] / backend / templates / view_recipe.html
index e355c52..1a5ba52 100644 (file)
@@ -2,6 +2,14 @@
 
 {% block content %}
 
-{{ current_recipe.title }}
+<h2 class="recipe-title" >{{ current_recipe.title }}</h2>
+
+{% match current_recipe.description %}
+    {% when Some with (description) %}
+        <div class="recipe-description" >
+        {{ description|markdown }}
+        </div>
+    {% when None %}
+{% endmatch %}
 
 {% endblock %}
\ No newline at end of file