diff options
author | xengineering <me@xengineering.eu> | 2023-04-01 21:18:29 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-02 21:52:10 +0200 |
commit | bae6e34c9119750b2cba2a2ce6d88e9f8c895900 (patch) | |
tree | c171db86da17301c1fec735e1f10f4e9d91f1b41 /data | |
parent | 996725cb4735e1026bb3409d52b5a61bc8274fd2 (diff) | |
download | ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.tar.zst ceres-bae6e34c9119750b2cba2a2ce6d88e9f8c895900.zip |
Switch from MariaDB to files
Using a database is way more complex (see the commit statistics of this
commit) than using files to store recipe data. Also administration and
usage is simpler.
Diffstat (limited to 'data')
-rw-r--r-- | data/storage/recipes/0/text | 3 | ||||
-rw-r--r-- | data/templates/recipe.html | 2 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/data/storage/recipes/0/text b/data/storage/recipes/0/text index 208828a..3eb81ce 100644 --- a/data/storage/recipes/0/text +++ b/data/storage/recipes/0/text @@ -2,5 +2,6 @@ Important steps: -- cook it +- cook it smoothly +- serve it - eat it 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> |