48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
---
|
|
layout: page
|
|
permalink: /repositories/
|
|
title: repositories
|
|
description:
|
|
nav: true
|
|
nav_order: 7
|
|
---
|
|
|
|
## 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>
|
|
|
|
---
|
|
|
|
{% 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 %}
|
|
{% endif %}
|
|
|
|
## 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 %}
|