shared.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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: 100px;
  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/shared_bookmark_logo.jpg");
  27. background-repeat: repeat
  28. }
  29. .href_link_button
  30. {
  31. float: right;
  32. list-style-type: none;
  33. }
  34. .list li {
  35. display:inline-block;
  36. vertical-align: middle;
  37. list-style-position: outside;
  38. list-style-type: disc;
  39. text-align: left;
  40. list-style-type: none;
  41. }
  42. .list_li_height {
  43. height: nowrap;
  44. }
  45. .bull {
  46. display:list-item
  47. }
  48. .text_border {
  49. border: 3px solid gray;
  50. }
  51. </style>
  52. <div class="mx-auto text-center">
  53. <div class="container">
  54. <div class="row">
  55. <div class="col-md-12 col-sm-12">
  56. <div class="section-title">
  57. <h1 class="heading bold">List of bookmarks you have created</h1>
  58. <hr>
  59. </div>
  60. </div>
  61. <!-- Code: Each Group of Box-->
  62. {% for bg, bml in bdic.items(): %}
  63. <div class="col-md-4 bookmark_box_background_color list_li_height" >
  64. <div class="inner_box">
  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">
  71. <ul class="list">
  72. <li><span class="bull">ICON {{ bm.name }}</span></li>
  73. </div>
  74. <div class="col">
  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. </li>
  81. </div>
  82. </ul>
  83. {% endfor %}
  84. </div>
  85. <!-- (End) Code: Each Link in the Box (End)-->
  86. <br>
  87. </div>
  88. </div>
  89. <!--(End) Code: Each Group of Box (End)-->
  90. {% endfor %}
  91. <div class="clearfix"></div>
  92. </div>
  93. <div class="clearfix"></div>
  94. </div>
  95. <div class="clearfix"></div>
  96. {% endblock %}
  97. </div>