diff options
author | xengineering <me@xengineering.eu> | 2024-03-06 21:40:16 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-06 21:42:50 +0100 |
commit | 1975f922a7525fc2725808d55a3c7e07849ae93f (patch) | |
tree | e244f8c0fbabfb1ce936b424d7f544f219319759 | |
parent | c48ddf4279ee38a9c06bed38e307ac4fd949d3ec (diff) | |
download | ceres-1975f922a7525fc2725808d55a3c7e07849ae93f.tar ceres-1975f922a7525fc2725808d55a3c7e07849ae93f.tar.zst ceres-1975f922a7525fc2725808d55a3c7e07849ae93f.zip |
view: Rework /recipe page layout
-rw-r--r-- | view/html/recipe.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html index 985a4e1..59ed575 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -7,12 +7,14 @@ <h1>{{.Title}}</h1> </header> <body> - <main>{{ if ne .Portions "" }} - <p>Portions: {{.Portions}}</p>{{end}}{{ if ne .Url "" }} - <p><a href="{{.Url}}">original recipe</a></p>{{end}}{{ if ne .Notes "" }} - <p style="white-space: pre-line;">{{.Notes}}</p>{{end}} - <a href="/recipe/{{.Id}}?view=recipe-edit"><button>edit</button></a> - <a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a> + <main> + <p> + <a class="button" href="/recipe/{{.Id}}?view=recipe-edit">edit</a> + <a class="button" style="background-color:red" href="/recipe/{{.Id}}?view=recipe-confirm-deletion">delete</a> + </p>{{ if ne .Portions "" }} + <p><i>Portions:</i> {{.Portions}}</p>{{end}}{{ if ne .Url "" }} + <p><i>Original recipe:</i> <a href="{{.Url}}">link</a></p>{{end}}{{ if ne .Notes "" }} + <p class="notice" style="white-space: pre-line;">{{.Notes}}</p>{{end}} </main> {{ template "footer" }} <script src="/static/view/static/ceres.js"></script> |