12 lines
329 B
HTML
12 lines
329 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Not found - SwitchBot Temps{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="empty-state">
|
|
<h1>Device not found</h1>
|
|
<p class="muted">That device is not available as a temperature sensor.</p>
|
|
<a class="button" href="/">Back to dashboard</a>
|
|
</section>
|
|
{% endblock %}
|