Merge remote-tracking branch 'template/master'

This commit is contained in:
2025-12-20 16:32:05 +01:00
3 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ help: ## show this message
print-%: print-%:
@echo -e '\033[32m$*\033[0m = $($*)' @echo -e '\033[32m$*\033[0m = $($*)'
node_modules: package-lock.json node_modules: bun.lock
@$(BUN) install @$(BUN) install
build: node_modules ## build static site in "dist" build: node_modules ## build static site in "dist"
+1 -1
View File
@@ -29,7 +29,7 @@ git remote add origin {PROJECT REMOTE}
> Every task is indicated with a TODO > Every task is indicated with a TODO
1. [ ] Rename app in [README.md](./README.md), [index.html](./index.html), [App.vue](./src/App.vue) and [package.json](./package.json) 1. [ ] Rename app in [README.md](./README.md), [index.html](./index.html), [App.vue](./src/App.vue) and [package.json](./package.json)
2. [ ] Change app hue and saturation in [style.css](./style.css) 2. [ ] Change app hue and saturation in [style.css](./public/style.css)
3. [ ] Remove this part and all TODO 3. [ ] Remove this part and all TODO
### Updating from template ### Updating from template
+22 -22
View File
@@ -1,24 +1,24 @@
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<!-- TODO: 1. rename app --> <!-- TODO: 1. rename app -->
<title>Change this you moron</title> <title>Change this you moron</title>
<link rel="stylesheet" href="/style.css" /> <link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/material-colors.css" /> <link rel="stylesheet" href="/material-colors.css" />
<!-- <link rel="icon" href="/favicon.ico"> --> <!-- <link rel="icon" href="/favicon.ico"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8"> <meta charset="UTF-8" />
<!-- card related --> <!-- card related -->
<!-- <!--
<meta name="twitter:card" content="summary_large_image"> <meta name="twitter:card" content="summary_large_image">
<meta property="og:title" content=""> <meta property="og:title" content="">
<meta property="og:description" content=""> <meta property="og:description" content="">
<meta property="og:image" content="https://.../preview_640x320.jpg"> <meta property="og:image" content="https://.../preview_640x320.jpg">
<meta property="org:url" content="https://..."> <meta property="org:url" content="https://...">
--> -->
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
<script type="module" src="/src/main.ts"></script> <script type="module" src="/src/main.ts"></script>
</body> </body>
</html> </html>