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.
17 lines
509 B
17 lines
509 B
11 years ago
|
{% if page.badges.twitter %}
|
||
|
<div class="project-sub-link">
|
||
|
<a href="https://twitter.com/{{ page.badges.twitter }}">
|
||
|
<div class="spring-icon project-badges twitter" alt="Twitter" title="Twitter">
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% for badge in page.badges.custom %}
|
||
|
<div class="project-sub-link">
|
||
|
<a href="{{ badge.url }}">
|
||
|
<div class="spring-icon project-badges {{ badge.icon }}" alt="{{ badge.name }}" title="{{ badge.name }}">
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
{% endfor %}
|