-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (37 loc) · 2.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: Oefenweb open-source software
modified: 2024-12-16
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
</head>
<body>
<h1>{{ page.title }}</h1>
<ul>
{% for repository in site.github.public_repositories %}
<li>
<p>
<a href="https://github.com/{{ repository.full_name }}">{{ repository.name }}</a> - {{ repository.description }}
<br />
<a href="https://github.com/{{ repository.full_name }}/actions?query=workflow%3ACI"><img src="https://github.com/{{ repository.full_name }}/workflows/CI/badge.svg" alt="Build Status" /></a>
{% if repository.open_issues_count >= 5 %}
<a href="https://github.com/{{ repository.full_name }}/issues"><img src="https://img.shields.io/badge/issues-{{ repository.open_issues_count }}-red.svg" alt="Issues" /></a>
{% elsif repository.open_issues_count > 0 %}
<a href="https://github.com/{{ repository.full_name }}/issues"><img src="https://img.shields.io/badge/issues-{{ repository.open_issues_count }}-orange.svg" alt="Issues" /></a>
{% else %}
<a href="https://github.com/{{ repository.full_name }}/issues"><img src="https://img.shields.io/badge/issues-{{ repository.open_issues_count }}-brightgreen.svg" alt="Issues" /></a>
{% endif %}
<a href="https://github.com/{{ repository.full_name }}/network"><img src="https://img.shields.io/badge/forks-{{ repository.forks_count }}-blue.svg" alt="Forks" /></a>
<a href="https://github.com/{{ repository.full_name }}/stargazers"><img src="https://img.shields.io/badge/stars-{{ repository.stargazers_count }}-blue.svg" alt="Stars" /></a>
<a href="https://github.com/{{ repository.full_name }}/watchers"><img src="https://img.shields.io/badge/watchers-{{ repository.watchers_count }}-blue.svg" alt="Watchers" /></a>
<a href="https://github.com/{{ repository.full_name }}/tags"><img src="https://img.shields.io/github/tag/{{ repository.full_name }}.svg" alt="Tag" /></a>
</p>
</li>
{% endfor %}
</ul>
<!-- {{ page.modified }} -->
</body>
</html>