summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2023-04-12Update example recipesxengineering
This shows some more markup features / edge cases.
2023-04-08Fix layout on delete confirmation pagexengineering
2023-04-08Fix linksxengineering
2023-04-02Switch from MariaDB to filesxengineering
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.
2023-04-02Add example recipe data filesxengineering
This prepares the switch to a file-based store of recipe data replacing MariaDB.
2023-04-01Improve user interfacexengineering
2023-04-01Implement recipe deletionxengineering
2023-04-01Make Markdown editablexengineering
2023-03-31Reduce to ID and Markdownxengineering
The upstream URL can be encoded easily by the user in the Markdown-based description. The title can be parsed by the first found top-level heading in the Markdown text. Thus these two columns are no longer used. To avoid an additional migration they will be kept in the database.
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-03-07Rework edit page dummyxengineering
Since there are no good solutions to upload the file and markdown description text via HTML forms the edit page will upload the changes using embedded javascript. The page is now complete apart from the necessary javascript code and the backend handlers.
2023-03-07Update navigation linksxengineering
2023-02-12Make add.html a templatexengineering
This allows to use partial HTML files via Go's templating features.
2023-02-12Move footer to own template filexengineering
2023-02-12Move <head/> section to own template filexengineering
This reduces copies of the same HTML code.
2023-02-08Add new recipe edit pagexengineering
Recipes should be completely editable and removable. Thus this edit page was added.
2023-01-11Switch to simple.cssxengineering
This makes it easier to maintain and it looks better.
2022-11-11Ensure that storage folder exists for debuggingxengineering
A not existing data/storage folder could break the program with the debug.json config file used. The .gitkeep file which is introduced with this commit ensures that the folder exists.
2022-11-07Add existing workxengineering