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, 0 insertions, 4 deletions
diff --git a/data/templates/recipe.html b/data/templates/recipe.html
index 98012fe..00b6906 100644
--- a/data/templates/recipe.html
+++ b/data/templates/recipe.html
@@ -17,13 +17,11 @@
</header>
<main>
- <img src="./recipe/image?id={{.Id}}" alt="Recipe image">
<h2>Recipe description</h2>
<a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
{{.RenderedDescriptionMarkdown}}
{{ template "footer.html" }}
-
</main>
</body>
</html>
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index bd67266..05a932c 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -17,8 +17,6 @@
<p>Recipe ID: {{.Id}}</p>
<input placeholder="Title" type="text" name="title" value="{{.Title}}"><br>
<input placeholder="Link (optional)" type="text" name="url" value="{{.UpstreamUrl}}"><br>
- <label for="image">New image (optional):</label>
- <input id="image" type="file"><br>
<pre contenteditable="true"><code>{{.DescriptionMarkdown}}</code></pre>
<button>save</button> <!-- TODO add functionality -->
<a href="/recipe?id={{.Id}}"><button>cancel</button></a>