diff options
| -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> |
