Skip to content

Commit

Permalink
html prettier.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgineer85 committed Nov 17, 2024
1 parent ff370ed commit e04fce0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 19 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
},
"python.testing.pytestArgs": ["--basetemp=./tests_tmp/", "./tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
48 changes: 30 additions & 18 deletions wigglecam/web_spa/index.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<title>Photobooth-App</title>
<meta charset=utf-8>
<meta name=description content="wigglecam-api frontend">
<meta name=viewport content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width">
<meta name=mobile-web-app-capable content=yes>
<meta name=apple-mobile-web-app-capable content=yes>
</head>
<body>
<head>
<title>Wigglecam-Api Basic Frontend</title>
<meta charset="utf-8" />
<meta name="description" content="wigglecam-api frontend" />
<meta
name="viewport"
content="user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1,width=device-width"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<div>
<h1>Wigglecam-Api Frontend</h1>
<p>The api is just a backend with no actual frontend. This is just a collection of links, that might be helpful:</p>
<ul>
<li><a href="/api/doc">API docs</a></li>
<li><a href="/api/camera/stream.mjpg">Nodes Livestream</a></li>

</ul>
<h1>Wigglecam-Api Frontend</h1>
<p>
The api is just a backend with no actual frontend. This is just a
collection of links, that might be helpful:
</p>
<ul>
<li><a href="/api/doc">API docs</a></li>
<li><a href="/api/camera/stream.mjpg">Nodes Livestream</a></li>
</ul>
</div>
</body></html>
<div>
<h1>Livestream</h1>
<a href="/api/camera/stream.mjpg">
<img src="/api/camera/stream.mjpg" />
</a>
</div>
</body>
</html>

0 comments on commit e04fce0

Please sign in to comment.