Tidy up static directory

This commit is contained in:
Fabian Müller 2023-06-06 00:54:35 +02:00
parent 4669017d0c
commit 361b664958
5 changed files with 6 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,8 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de" xmlns="http://www.w3.org/1999/html" data-theme="dark"> <html lang="de" xmlns="http://www.w3.org/1999/html" data-theme="dark">
<head> <head>
<title>FabLab Bottle Clip Generator</title> <title>FabLab Bottle Clip Generator</title>
<link rel="stylesheet" href="{{ url_for('static', filename='pico.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/pico.css') }}">
<style> <style>
.error { .error {
background-color: rgb(183, 28, 28); background-color: rgb(183, 28, 28);
@ -16,10 +17,10 @@
<body> <body>
<script src="{{ url_for('static', filename='download.js') }}"></script> <script src="{{ url_for('static', filename='js/download.js') }}"></script>
<script type="module"> <script type="module">
import {createApp} from '{{ url_for("static", filename="vue.esm-browser.js") }}' import {createApp} from '{{ url_for("static", filename="js/vue.esm-browser.js") }}'
createApp({ createApp({
data() { data() {
@ -74,7 +75,7 @@
<main class="container"> <main class="container">
<center> <center>
<img src="{{ url_for('static', filename='logo.svg') }}" style="max-width: 350px; margin-bottom: 30px;"> <img src="{{ url_for('static', filename='img/logo.svg') }}" style="max-width: 350px; margin-bottom: 30px;">
<h1>FabLab Bottle Clip Generator</h1> <h1>FabLab Bottle Clip Generator</h1>
@ -95,4 +96,5 @@
</main> </main>
</body> </body>
</html> </html>