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.

59 lines
2.5 KiB

4 years ago
  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}Read TI Later{% endblock %}
  3. {% block styles %}
  4. {{super()}}
  5. <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
  6. {% endblock %}
  7. {% block navbar %}
  8. <nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
  9. <a href="/"><div class="navbar-brand"><i data-feather="arrow-left" style="line-height: 1.5; vertical-align: middle; margin-bottom: 4px;"></i></div></a>
  10. <form class="form-inline ml-auto">
  11. {# <div class="custom-control custom-switch">
  12. <input type="checkbox" class="custom-control-input" id="darkSwitch" />
  13. <label class="custom-control-label" for="darkSwitch">Dark Mode</label>
  14. </div>
  15. <div class="navbar-text" style="margin-right: 20px; ">{{ user['userName'] }}</div> #}
  16. <a class="toolbar-button" href="#"><i data-feather="type"></i></a>
  17. <a class="toolbar-button" href="/archive/{{ article[0] }}"><i data-feather="archive"></i></a>
  18. <a class="toolbar-button" href="/delete/{{ article[0] }}" style="padding-right: 1rem;"><i data-feather="trash"></i></a>
  19. </form>
  20. </nav>
  21. {% endblock %}
  22. {% block content %}
  23. <div class="container" style="margin-top: 15px">
  24. <div id="error-alert" class="alert alert-danger" role="alert" style="display: none;">
  25. This is a danger alert—check it out!
  26. </div>
  27. <form>
  28. <div class="row justify-content-center">
  29. {# <div class="col-lg-6">
  30. <label for="formGroupExampleInput4">URL</label>
  31. <input id="link-form" type="text" class="form-control" placeholder="https://example.com">
  32. <br>
  33. <button type="button" class="btn btn-primary" onclick="addUrl();">Add</button>
  34. <br>
  35. <br>
  36. </div> #}
  37. <div class="col-lg-12">
  38. <div style="padding: 10px;" id="article">
  39. <h1 style="text-align: center;">{{ article[3] }}</h1>
  40. <a href="{{ article[1] }}" class="text-info" target="_blank" style="display: block; text-align: center; margin-bottom: 20px;">View Original</a>
  41. {{ article[2] | safe}}
  42. </div>
  43. </div>
  44. </div>
  45. </form>
  46. </div>
  47. {% endblock %}
  48. {% block scripts %}
  49. {{ super() }}
  50. <script src="https://unpkg.com/feather-icons"></script>
  51. <script>
  52. $('#article img').css('max-width', '100%');
  53. $('#article img').css('height', 'auto');
  54. feather.replace();
  55. </script>
  56. {% endblock %}