shared.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <style>
  4. body{
  5. color: #1a202c;
  6. text-align: left;
  7. background-color: #e2e8f0;
  8. padding-top: 120px;
  9. font-size: 14px;
  10. }
  11. .main-body {
  12. padding: 15px; } .card { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
  13. }
  14. ul {
  15. list-style-type: none;
  16. float: left;
  17. }
  18. .href_link_button
  19. {
  20. float: right;
  21. }
  22. .bookmark_box_background_color {
  23. background-color: #fff;
  24. border-style: inset;
  25. border-radius: .5rem;
  26. background-image: url("static/logo/home_bookmark_logo.png");
  27. background-repeat: no-repeat;
  28. background-size: cover;
  29. }
  30. .href_link_button
  31. {
  32. float: right;
  33. list-style-type: none;
  34. }
  35. .list li {
  36. display:inline-block;
  37. vertical-align: middle;
  38. list-style-position: outside;
  39. list-style-type: disc;
  40. text-align: left;
  41. list-style-type: none;
  42. }
  43. .list_li_height {
  44. height: nowrap;
  45. }
  46. .bull {
  47. display:list-item
  48. }
  49. .text_border {
  50. border: 3px solid gray;
  51. }
  52. </style>
  53. <div class="mx-auto text-center">
  54. <div class="container">
  55. <div class="row">
  56. <div class="col-md-12 col-sm-12">
  57. <div class="section-title">
  58. <h1 class="heading bold">List of bookmarks you have created</h1><br>
  59. </div>
  60. </div>
  61. {% for bg, bml in bdic.items(): %}
  62. <div class="col-md-4">
  63. <div class="bookmark_box_background_color" style="border-style: inset;">
  64. <div>
  65. <h3 >{{ bg }}</h3>
  66. <hr>
  67. <!-- Code: Each Link in the Box-->
  68. {% for bm in bml: %}
  69. <div class="row">
  70. <div class="col.md-4">
  71. <ul class="list">
  72. <li>(ICON) {{ bm.name }}</li>
  73. </div>
  74. <div class="col.md-4" style="position:absolute; right:17px;">
  75. <li class="href_link_button">
  76. <a href="{{ bm.link }}">
  77. <img src="static/logo/link_logo.png"width="25" height="25">
  78. </a>
  79. <button type="submit">Edit</button>
  80. <b class="text_border"><i>{{ bm.status }}</i></b>
  81. </li>
  82. </ul>
  83. </div>
  84. </div>
  85. {% endfor %}
  86. <!-- (End) Code: Each Link in the Box (End)-->
  87. </div>
  88. </div>
  89. <br>
  90. </div>
  91. {% endfor %}
  92. </div>
  93. {% endblock %}