12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <head>
- {%include '../inc/header.html'%}
- <link href="{{static_url('mobile/css/origins.css')}}" rel="stylesheet">
- </head>
- <body>
- {%include 'top.html'%}
- <section class="m-wrapper">
- {%include 'menu.html'%}
- <section class="li-1">
- {% for v in data['growth'] %}
- <dl>
- <dt><img src="{{v['pic']}}" width="100%"></dt>
- <dd>{{Demeter.date(v['date'], '%Y-%m-%d')}}</dd>
- <dd>{{v['name']}}</dd>
- </dl>
- {% end %}
- </section>
- <h2>实时农作物长势</h2>
- <section class="img-wrap">
- <img src="{{data['device']['value']}}" width="100%" />
- </section>
- </section>
- {%include '../inc/script.html'%}
- </body>
- </html>
|