This repository has been archived on 2023-11-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blog/_includes/friends.html
2023-06-03 15:58:09 +08:00

9 lines
202 B
HTML

{% if site.friends %}
<hr>
<h5>FRIENDS</h5>
<ul class="list-inline">
{% for friend in site.friends %}
<li><a href="{{friend.href}}">{{friend.title}}</a></li>
{% endfor %}
</ul>
{% endif %}