first commit, raspi temp display

This commit is contained in:
2019-08-13 23:28:00 -05:00
commit 585f5c4c51
8 changed files with 31 additions and 0 deletions

8
app/templates/index.html Normal file
View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>{{ title }} - Microblog</title>
</head>
<body>
<h1>Hello, {{ user.username }}!</h1>
</body>
</html>

View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>{{ device.name }} Status</title>
</head>
<body>
<h1>Temperature: {{ status.temperature }}</h1>
</body>
</html>