diff options
author | xengineering <me@xengineering.eu> | 2025-04-05 15:28:04 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-04-05 15:28:04 +0200 |
commit | 00189e737517f4470336d819d52327a037509493 (patch) | |
tree | 8f7d2f3e616a89b807cf2986ecc6ee6876f99392 /web/layouts | |
parent | 061a67ea6e4a7fb9658fd3efc1c670eae5ff3eb6 (diff) | |
download | iot-contact-00189e737517f4470336d819d52327a037509493.tar iot-contact-00189e737517f4470336d819d52327a037509493.tar.zst iot-contact-00189e737517f4470336d819d52327a037509493.zip |
web: Replace file copying by Meson installation
This makes the build system code way less hacky and more modular.
Diffstat (limited to 'web/layouts')
-rw-r--r-- | web/layouts/baseof.html | 2 | ||||
-rw-r--r-- | web/layouts/home.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/web/layouts/baseof.html b/web/layouts/baseof.html index b52d039..96d8e07 100644 --- a/web/layouts/baseof.html +++ b/web/layouts/baseof.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" type="text/css" href="simple.css"> + <link rel="stylesheet" type="text/css" href="static/simple.css"> <title>{{ .Site.Title }}</title> </head> <body> diff --git a/web/layouts/home.html b/web/layouts/home.html index dcd4a66..bf534cf 100644 --- a/web/layouts/home.html +++ b/web/layouts/home.html @@ -1,7 +1,7 @@ {{- define "main" -}} <h1>{{ .Site.Title }}</h1> <ul> - <li><a href="bill-of-materials.csv">bill-of-materials.csv</a></li> - <li><a href="schematic.pdf">schematic.pdf</a></li> + <li><a href="static/bill-of-materials.csv">bill-of-materials.csv</a></li> + <li><a href="static/schematic.pdf">schematic.pdf</a></li> </ul> {{- end -}} |