aboutsummaryrefslogtreecommitdiff
blob: 176f519da97445f1018082be1130efa9a52b39a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends 'base.html.twig' %}

{% block body %}
    <div class="columns">
        <div class="column">
            <table class="table">
                <thead class="thead">
                <tr class="tr">
                    <th class="td">TimeStamp</th>
                    <th class="td">Co</th>
                    <th class="td">No</th>
                    <th class="td">So</th>
                </tr>
                </thead>
                <tbody class="tbody">
                <tr id="latest" class="tr">
                    <td class="td">{{ TimeStamp }}</td>
                    <td class="td">{{ Co }}</td>
                    <td class="td">{{ No }}</td>
                    <td class="td">{{ So }}</td>
                </tr>
                </tbody>
            </table>
            <p id="aq">The current air quality index is <strong>{{ Aqi }}</strong></p>
        </div>
        <div class="column">
            <img src="https://www.ourair.org/wp-content/uploads/AQItable.gif">
        </div>
    </div>

{% endblock %}
{% block javascripts %}
    <script src="{{ asset('js/realtime.js') }}"></script>
{% endblock %}