search_results.html 930 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <style>
  4. .post-hidden { font-size: 70%; }
  5. .post-hidden a { color: gray; }
  6. .result .author { font-style: italic; font-size: 85%;}
  7. </style>
  8. <table class="table table-striped">
  9. <thead>
  10. <th>ID</th>
  11. <th>Data</th>
  12. <th>Titolo</th>
  13. <th>Autore</th>
  14. </thead>
  15. <tbody>
  16. {% for r in results %}
  17. <tr class="result post-display--{{r.display}} {% if r.display == 'f' %}post-hidden{%endif%}"
  18. >
  19. <td>
  20. <a href="{{url_for('news_by_nid', nid=r.nid)}}">{{r.nid}}</a>
  21. </td>
  22. <td> <time>{{r.published_datetime.strftime('%d/%m/%Y')}}</time> </td>
  23. <td> {{r.title}} </td>
  24. <td class="author">{{r.author}}</td>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29. {{pagination.links}}
  30. {% endblock content %}