Revert "testing"

This reverts commit 7201ebbf5f.
This commit is contained in:
HackerNCoder 2022-10-30 19:01:18 +01:00
parent 7201ebbf5f
commit 2cb2610d24

View file

@ -1,16 +1,13 @@
{% set alts = get_alts() %} {% set alts = get_alts() %}
<div class="pull-right"> <div class="btn-group dropdown pull-right">
<li class="dropdown"> <button type="button" class="btn btn-dark bg-dark dropdown-toggle btn-block my-3 my-sm-0" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">{{ this.alt }} <b class="caret"></b></a> {{ this.alt }}
<ul class="dropdown-menu"> </button>
{% for alt in alts %} <div class="dropdown-menu">
{% if this.alt != alt %} {% for alt in alts %}
<li><a href="{{ this.path|url(alt=alt) }}">{{ alt }}</a></li> {% if this.alt != alt %}
{% endif %} <a class="dropdown-item" href="{{ this.path|url(alt=alt) }}">{{ alt }}</a>
{% endfor %} {% endif %}
<li><a href="#">Something else here</a></li> {% endfor %}
<li class="divider"></li> </div>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</div> </div>