farm.html 1.0 KB

123456789101112131415161718192021222324252627282930
  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-2">
  12. <img src="{{data['farm']['pic']}}" width="100%">
  13. <ul>
  14. <li>{{data['farm']['name']}}</li>
  15. <li>产品种植面积 <p>{{data['product']['area']}}</p></li>
  16. <li>每亩产量 <p>{{data['product']['yields']}}</p></li>
  17. <li>联系人 <p>{{data['farm']['master_name']}}</p></li>
  18. <li>联系电话 <p>{{data['farm']['tel']}}</p></li>
  19. <li>地址 <p>{{data['farm']['address']}}</p></li>
  20. </ul>
  21. </section>
  22. <section class="info">
  23. <h2 class="tleft">农场介绍</h2>
  24. {% raw data['farm']['info'] %}
  25. </section>
  26. </section>
  27. {%include '../inc/script.html'%}
  28. </body>
  29. </html>