index.html 815 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {%include '../inc/header.html'%}
  5. <link href="{{static_url('mobile/css/origins.css')}}" rel="stylesheet">
  6. </head>
  7. <body>
  8. {%include 'top.html'%}
  9. <section class="m-wrapper">
  10. {%include 'menu.html'%}
  11. <section class="li-1">
  12. {% for v in data['growth'] %}
  13. <dl>
  14. <dt><img src="{{v['pic']}}" width="100%"></dt>
  15. <dd>{{Demeter.date(v['date'], '%Y-%m-%d')}}</dd>
  16. <dd>{{v['name']}}</dd>
  17. </dl>
  18. {% end %}
  19. </section>
  20. <h2>实时农作物长势</h2>
  21. <section class="img-wrap">
  22. <img src="{{data['device']['value']}}" width="100%" />
  23. </section>
  24. </section>
  25. {%include '../inc/script.html'%}
  26. </body>
  27. </html>