summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/recipe.html2
-rw-r--r--data/templates/recipe_edit.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/recipe.html b/data/templates/recipe.html
index b1fc550..972a8bf 100644
--- a/data/templates/recipe.html
+++ b/data/templates/recipe.html
@@ -15,7 +15,7 @@
</header>
<main>
- {{.RenderedDescriptionMarkdown}}
+ {{.Html}}
<a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
{{ template "footer.html" }}
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index 4860c6a..9069d4a 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -15,7 +15,7 @@
<main>
<p>Recipe ID: {{.Id}}</p>
- <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre>
+ <pre contenteditable="true" id="editor"><code>{{.Text}}</code></pre>
<button onclick="save()">save</button>
<a href="/recipe?id={{.Id}}"><button>back</button></a>
<a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a>