pages/_pages/repositories.md
Rohan Deb Sarkar f618757b63
Adds support for repositories (#760)
* Add support for github repo cards

* add support for dark theme

* Add support for custom theme

* repositories

* fix

* make it simpler

* spcaing

* responsive fix

* adds support for usernames

* make it modular

* fix

* show icons

* cache_seconds

* fix

* Revert "cache_seconds"

This reverts commit a9dd4d5d43d212676e1c1dba8ec8086c7fdb7cd7.

* add last line

* fix

* github only

* fix

* Add instructions

* Add `README.md` instructions

* Add `nav_order`
2022-07-24 22:45:39 +05:30

898 B

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 3

GitHub users

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

{% for user in site.data.repositories.github_users %} {% include repository/repo_user.html username=user %} {% endfor %}
{% 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 %}