diff options
| author | horus | 2021-04-24 03:39:19 +0200 |
|---|---|---|
| committer | horus | 2021-04-24 03:39:19 +0200 |
| commit | b629f6b83bc1fa43788e9b09d96bcf9cff92b2c7 (patch) | |
| tree | bf1a612a960cca1ea0dfc74a91651248f950401c | |
| parent | 02cf7c4ef3f3aa949f241d8319217eb9ce02ed01 (diff) | |
| download | faces-b629f6b83bc1fa43788e9b09d96bcf9cff92b2c7.tar.gz | |
Add index
| -rw-r--r-- | index.html | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -59,6 +59,11 @@ .btn-outline-light { border-color: #262626; } + + .box { + border: white solid 1px; + padding: 1em; + } {% endblock %} {% block main %} @@ -69,10 +74,21 @@ <h1>Best faces on the net</h1> <em>Search, find and click to copy.</em> ヾ(⌐■_■)ノ♪ </div> + <div class="shadow box"> + Index + + <ul class="list-unstyled"> +{% for subtitle, args in faces %} + <li> + # <a href="#{{ subtitle }}">{{ subtitle }}</a> + </li> +{% endfor %} + </ul> + </div> <div class="row text-center faces-start"> {% for subtitle, args in faces %} - <h2 class="col-12 float-left subtitle">{{ subtitle }} + <h2 class="col-12 float-left subtitle" id="{{ subtitle }}">{{ subtitle }} <hr> </h2> <br> |
