platypush/platypush/backend/http/templates/widgets/date-time-weather.html

19 lines
650 B
HTML
Raw Normal View History

<script type="text/javascript" src="{{ url_for('static', filename='js/widgets/date-time-weather.js') }}"></script>
<link rel="stylesheet" href="{{ url_for('static', filename='css/widgets/date-time-weather.css') }}"></script>
<div class="date-time-weather-container">
<div class="date" data-bind="date"></div>
<div class="time" data-bind="time"></div>
<h1 class="temperature">
<span data-bind="temperature">N/A</span>&deg;
</h1>
<div class="forecast" data-bind="forecast"></div>
<!-- <p class="sensor-temperature"> -->
<!-- <span data-bind="sensor-temperature">N/A</span>&deg; -->
<!-- </p> -->
</div>