| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- {% extends "base.html" %}
- {% block content %}
- <style>
- body{
- color: #1a202c;
- text-align: left;
- background-color: #e2e8f0;
- padding-top: 120px;
- font-size: 14px;
- }
- .main-body {
- padding: 15px; } .card { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
- }
- ul {
- list-style-type: none;
- float: left;
- }
- .href_link_button
- {
- float: right;
- }
- .bookmark_box_background_color {
- background-color: #fff;
- border-style: inset;
- border-radius: .5rem;
- background-image: url("static/logo/home_bookmark_logo.png");
- background-repeat: no-repeat;
- background-size: cover;
- }
- .href_link_button
- {
- float: right;
- list-style-type: none;
- }
- .list li {
- display:inline-block;
- vertical-align: middle;
- list-style-position: outside;
- list-style-type: disc;
- text-align: left;
- list-style-type: none;
- }
- .list_li_height {
- height: nowrap;
- }
- .bull {
- display:list-item
- }
- .text_border {
- border: 4px solid gray;
- padding: 3px 0px 5px 0px;
- }
- </style>
- <div class="mx-auto text-center">
- <div class="container">
- <div class="row">
- <div class="col-md-12 col-sm-12">
- <div class="section-title">
- <h1 class="heading bold">List of bookmarks you have created</h1><br>
- </div>
- </div>
- {% for bg, bml in bdic.items(): %}
- <div class="col-md-4">
- <div class="bookmark_box_background_color" style="border-style: inset;">
- <div>
- <h3 >{{ bg }}</h3>
- <hr>
- <!-- Code: Each Link in the Box-->
- {% for bm in bml: %}
- <div class="row">
- <div class="col.md-4">
- <ul class="list">
- <li>(ICON) {{ bm.name }}</li>
- </div>
- <div class="col.md-4" style="position:absolute; right:17px;">
- <li class="href_link_button">
- <a href="{{ bm.link }}">
- <img src="static/logo/link_logo.png"width="30" height="30">
- </a>
- </li>
- </ul>
- </div>
- </div>
- {% endfor %}
- <!-- (End) Code: Each Link in the Box (End)-->
- </div>
- </div>
- <br>
- </div>
- {% endfor %}
- </div>
- {% endblock %}
|