I2P brand styleguides for the web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
834 B

<div class="mt-5" id="icons">
<h2>Icons</h2>
<span>I2P uses the following <a href="../assets/fonts/i2p-iconfont.zip">icons</a> in its interface.</span>
<div class="mt-3">
<div class="mt-3">
<div class="row">
{% for icons_hash in page.icons %}
{% for icon in icons_hash %}
<div class="col-4 col-sm-3 col-lg-2 text-center pt-3 pb-3">
<div class="">
<span class="{{ icon[1] }} text-muted" style="font-size:2rem;"></span>
</div>
<div class="mb-5 text-center">
<span>{{icon[0]}}</span>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>
</div>
</div>