notebook.html 365 B

1234567891011
  1. <div class="panel panel-default">
  2. <div class="panel-heading clearfix">
  3. <span style="float:right"> 排序1 / 排序2</span>
  4. </div>
  5. {% for notebook in notebooks.items %}
  6. <div class="panel-body" style="border-bottom:1px solid #eee">
  7. {{ notebook.content}}
  8. </div>
  9. {% endfor %}
  10. {{ p_footer(notebooks,'user.notebook')}}
  11. </div>