pages/_pages/repositories.md
George 0795059a4b
Now blog can be reorganized in header (#1996)
Fixes #1559 #1795

Signed-off-by: George Araújo <george.gcac@gmail.com>
2023-12-25 14:41:27 -03:00

1.3 KiB

layout permalink title description nav nav_order
page /repositories/ repositories Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories. true 4

GitHub users

{% if site.data.repositories.github_users %}

{% for user in site.data.repositories.github_users %} {% include repository/repo_user.html username=user %} {% endfor %}

{% if site.repo_trophies.enabled %} {% for user in site.data.repositories.github_users %} {% if site.data.repositories.github_users.size > 1 %}

{{ user }}

{% endif %}
{% include repository/repo_trophies.html username=user %}

{% endfor %} {% endif %} {% endif %}

GitHub Repositories

{% if site.data.repositories.github_repos %}

{% for repo in site.data.repositories.github_repos %} {% include repository/repo.html repository=repo %} {% endfor %}
{% endif %}