| 12345678910111213141516171819202122232425262728293031 |
- {% extends 'web/f_base.html' %}
- {% block middle %}
- <section id="inner-headline">
- <div class="container">
- <div class="row">
- <div class="col-lg-12">
- <h2 class="pageTitle">{{KTName}} </h2>
- </div>
- </div>
- </div>
- </section>
- <section id="content">
- <div class="container content">
- <div class="row service-v1 margin-bottom-40">
- <div class="col-md-12 md-margin-bottom-40">
- <table style="border: none; width: 100%">
- {% for row in notelist %}
- <tr>
- <td style="width: 220px"><img style="width:200px; height:100px" src="/{{row[6]}}" /></td>
- <td><h3><a href="/noteinfo/{{row[0]}}">{{row[3]}}</a></h3>
- <p>{{row[4]}}</p>
- <p>作者:{{row[5]}}. {{row[7]}}</p></td>
- </tr>
- {% endfor %}
- </table>
- </div>
- </div>
- </div>
- </section>
- {% endblock %}
|