Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ markdown: kramdown

plugins:
- jekyll-remote-theme
- jekyll-github-metadata
26 changes: 26 additions & 0 deletions pages/repositories.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: GitHub Repositories
permalink: /repositories
description: リポジトリリスト
layout: page
background: grey
---

## Numa-Lab GitHub Repositories

**[https://github.com/Numa-Lab](https://github.com/Numa-Lab)**

{% for repository in site.github.public_repositories %}

### {% if repository.archived == true %}<i class="fa-solid fa-box-archive"></i>{%- else -%}{% if repository.fork == true -%}<i class="fa-solid fa-code-fork"></i>{%- else -%}<i class="fa-solid fa-code"></i>{% endif %}{% endif %} [{{ repository.name }}]({{ repository.html_url }})

{{ repository.description }}

License : {{ repository.license.name }}
Language : {{ repository.language }}
Created at {{ repository.created_at }}
Pushed at {{ repository.pushed_at }}

stargazers_count: {{ repositsory.stargazers_count }}, watchers_count: {{ repository.watchers_count }}, forks_count: {{ repository.forks_count }}, open_issues_count: {{ repository.open_issues_count }}

{% endfor %}