f_knowlist.html 986 B

12345678910111213141516171819202122232425262728293031
  1. {% extends 'web/f_base.html' %}
  2. {% block middle %}
  3. <section id="inner-headline">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-lg-12">
  7. <h2 class="pageTitle">{{KTName}} </h2>
  8. </div>
  9. </div>
  10. </div>
  11. </section>
  12. <section id="content">
  13. <div class="container content">
  14. <div class="row service-v1 margin-bottom-40">
  15. <div class="col-md-12 md-margin-bottom-40">
  16. <table style="border: none; width: 100%">
  17. {% for row in notelist %}
  18. <tr>
  19. <td style="width: 220px"><img style="width:200px; height:100px" src="/{{row[6]}}" /></td>
  20. <td><h3><a href="/knowinfo/{{row[0]}}">{{row[3]}}</a></h3>
  21. <p>{{row[4]}}</p>
  22. <p>作者:{{row[5]}}. {{row[7]}}</p></td>
  23. </tr>
  24. {% endfor %}
  25. </table>
  26. </div>
  27. </div>
  28. </div>
  29. </section>
  30. {% endblock %}