32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Dashboard ({{today.strftime('%-m/%-d, %-H:%M')}}){% endblock %}
|
|
{% block content %}
|
|
<div class="dashboard">
|
|
<div style="height:1em"></div>
|
|
<div class="panel top">
|
|
<div class="splitpanel">
|
|
<div><i class="wi wi-owm-{{ weather.id }} weather-icon"></i></div>
|
|
<div>{{weather.main}}</div>
|
|
</div>
|
|
<div class="splitpanel big-text">
|
|
{{ today.strftime('%a') }}<br>
|
|
{{ today.strftime('%b %-d') }}<br>
|
|
{{ today.strftime('%Y') }}<br>
|
|
</div>
|
|
</div>
|
|
<div class="panel bottom week">
|
|
<div class="row">
|
|
{% for day, events in days [:4] %}
|
|
{% include "includes/day.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="row">
|
|
{% for day, events in days [4:] %}
|
|
{% include "includes/day.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div><code>{{extra_debug}} </code><code>{{ today.strftime('%c') }}</code></div>
|
|
</div>
|
|
{%endblock%}
|