31 lines
899 B
Markdown
31 lines
899 B
Markdown
---
|
|
layout: page
|
|
permalink: /repositories/
|
|
title: repositories
|
|
description: Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories.
|
|
nav: false
|
|
nav_order: 3
|
|
---
|
|
|
|
## 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.html username=user %}
|
|
{% endfor %}
|
|
</div>
|
|
{% 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.html repository=repo %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|