al-folio-readme-1.html
· 1.1 KiB · HTML
原始文件
<!-- code for GitHub users -->
{% if site.data.repositories.github_users %}
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for user in site.data.repositories.github_users %} {% include repository/repo_user.liquid username=user %} {% endfor %}
</div>
{% endif %}
<!-- code for GitHub trophies -->
{% if site.repo_trophies.enabled %} {% for user in site.data.repositories.github_users %} {% if site.data.repositories.github_users.size > 1 %}
<h4>{{ user }}</h4>
{% endif %}
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% include repository/repo_trophies.liquid username=user %}
</div>
{% endfor %} {% endif %}
<!-- code for GitHub repositories -->
{% if site.data.repositories.github_repos %}
<div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center">
{% for repo in site.data.repositories.github_repos %} {% include repository/repo.liquid repository=repo %} {% endfor %}
</div>
{% endif %}
1 | <!-- code for GitHub users --> |
2 | {% if site.data.repositories.github_users %} |
3 | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> |
4 | {% for user in site.data.repositories.github_users %} {% include repository/repo_user.liquid username=user %} {% endfor %} |
5 | </div> |
6 | {% endif %} |
7 | |
8 | <!-- code for GitHub trophies --> |
9 | {% if site.repo_trophies.enabled %} {% for user in site.data.repositories.github_users %} {% if site.data.repositories.github_users.size > 1 %} |
10 | <h4>{{ user }}</h4> |
11 | {% endif %} |
12 | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> |
13 | {% include repository/repo_trophies.liquid username=user %} |
14 | </div> |
15 | {% endfor %} {% endif %} |
16 | |
17 | <!-- code for GitHub repositories --> |
18 | {% if site.data.repositories.github_repos %} |
19 | <div class="repositories d-flex flex-wrap flex-md-row flex-column justify-content-between align-items-center"> |
20 | {% for repo in site.data.repositories.github_repos %} {% include repository/repo.liquid repository=repo %} {% endfor %} |
21 | </div> |
22 | {% endif %} |