You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
2.1 KiB

  1. <div style="color: black; padding: 10px; margin-bottom: 10px" class="card" id="article">
  2. <a href="/article/{{article[0]}}" class="cell">{{ article[2] }}</a>
  3. <a href="{{ article[1] }}" target="_blank" style="color: darkgray">{{ article[3] }}</a>
  4. <span style="padding-top: 10px;">
  5. {% if request.path == url_for('archived') %}
  6. <a href="/unarchive/{{article[0]}}" style="color: gray" data-toggle="tooltip" data-placement="bottom" title="Unarchive"><svg
  7. width="24"
  8. height="24"
  9. fill="none"
  10. stroke="currentColor"
  11. stroke-width="2"
  12. stroke-linecap="round"
  13. stroke-linejoin="round"
  14. style="line-height: 1; vertical-align: middle; margin-bottom: 4px;">
  15. <use xlink:href="{{url_for('.static', filename='feather-sprite.svg')}}#plus-square"/></svg></a>
  16. {% else %}
  17. <a href="/archive/{{article[0]}}" class="cell-button" data-toggle="tooltip" data-placement="bottom" title="Archive"><svg
  18. width="24"
  19. height="24"
  20. fill="none"
  21. stroke="currentColor"
  22. stroke-width="2"
  23. stroke-linecap="round"
  24. stroke-linejoin="round"
  25. style="line-height: 1; vertical-align: middle; margin-bottom: 4px;">
  26. <use xlink:href="{{url_for('.static', filename='feather-sprite.svg')}}#archive"/></svg></a>
  27. {% endif %}
  28. &nbsp;&nbsp;&nbsp;&nbsp;
  29. <a href="/delete/{{article[0]}}" class="cell-button" data-toggle="tooltip" data-placement="bottom" title="Trash"><svg
  30. width="24"
  31. height="24"
  32. fill="none"
  33. stroke="currentColor"
  34. stroke-width="2"
  35. stroke-linecap="round"
  36. stroke-linejoin="round"
  37. style="line-height: 1; vertical-align: middle; margin-bottom: 4px;">
  38. <use xlink:href="{{url_for('.static', filename='feather-sprite.svg')}}#trash"/></svg></a>
  39. </span>
  40. </div>