現在、Bigcartel サイトのテーマ「Sidecar」をカスタマイズしており、固定サイドバーにアーティスト リンクのみを表示するドロップダウン メニューを追加しようとしています。
単純なコードだけを使用して を囲みましたが、うまくいかないようです。下に描かれているもの以外は、ドロップダウンしたり、何も表示したりしません。
誰でも助けることができますか?
ドロップダウンを追加する前に - https://db.tt/gYoAFdW3
次に、以下のコードを適用した後 - https://db.tt/w3UFxzoA
{% if artists.active != blank %}
<section>
<h2 class="title">Artists</h2>
<select>
<ul>
{% for artist in artists.active %}
<li>
<a href="{{ artist.url }}" class="page {% if page.full_url contains artist.url %}current{% endif %}">
{{ artist.name }}
</a>
</li>
{% endfor %}
</ul>
</select>
</section>
{% endif %}