Files
felixfoertsch.de/Content/Archive/220123-ff.de v10 felixfoertsch.github.io/_layouts/repositories.html
T

20 lines
338 B
HTML

---
layout: default
---
<div class="row">
<div class="col">
{{ content }}
<div>
{% for repository in site.github.public_repositories limit: 100 %}
{% if repository.stargazers_count > 0 %}
<div>
{% include repo-card.html %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>