diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-02-08 22:07:35 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-02-08 22:07:35 -0800 |
| commit | b98ed7f8eb773af1207aed2fac64c361a6e3e246 (patch) | |
| tree | 7faad84bb0526fcdeccd52b45578e0266c1110f0 /index.html | |
| parent | 2efcc18e7f821e0e86e3711924c250282c8b31ea (diff) | |
fix src links for build
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -3,8 +3,8 @@ <head> <meta charset='utf-8' lang='en'/> <title>Interactive Tiers</title> - <link rel="stylesheet" href="/styles.css"> - <script src="/index.js" defer></script> + <link rel="stylesheet" href="styles.css"> + <script src="index.js" defer></script> </head> <body> <div class='title'> @@ -20,31 +20,31 @@ <div class='buttons-container'> <div class='button'> <label for='load-img-input'> - <img src='/img/plus-circle.svg' title='Add images'/> + <img src='img/plus-circle.svg' title='Add images'/> </label> <input id='load-img-input' type='file' accept='image/*' multiple/> </div> <div class='button'> <label for='reset-list-input'> - <img src='/img/x-circle.svg' title='Reset list'> + <img src='img/x-circle.svg' title='Reset list'> </label> <input id='reset-list-input' type='button' /> </div> <div class='button'> <label for='export-input'> - <img src='/img/upload.svg' title='Export'> + <img src='img/upload.svg' title='Export'> </label> <input id='export-input' type='button' /> </div> <div class='button'> <label for='import-input'> - <img src='/img/download.svg' title='Import Existing List'/> + <img src='img/download.svg' title='Import Existing List'/> </label> <input id='import-input' type='file' accept='.json' multiple/> </div> <div class='button'> <label for='export-input-html'> - <img src='/img/globe.svg' title='Export HTML'> + <img src='img/globe.svg' title='Export HTML'> </label> <input id='export-input-html' type='button' /> </div> @@ -55,10 +55,10 @@ </div> </section> <div class="top-container"> - <img id='trash' src='/img/trash.svg' title='Delete image (drag it over here)'> + <img id='trash' src='img/trash.svg' title='Delete image (drag it over here)'> <div class='button'> <label for='toggle-layout'> - <img src='/img/layout.svg' title='Toggle Layout'/> + <img src='img/layout.svg' title='Toggle Layout'/> </label> <input id='toggle-layout' type='button'/> </div> |
