mylloon.fr/templates/contrib.html
Mylloon addf6e0035
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
better error handling
2023-04-12 01:21:07 +02:00

39 lines
958 B
HTML

<!DOCTYPE html>
<html class="index" lang="fr">
{{> header.html }}
<body>
{{#data}}
<div id="content">
{{#error}}
<p>Github ne veut pas que tu vois ces informations...</p>
{{/error}} {{^error}}
<h1 class="subtitle">Mes contributions</h1>
<!-- Add URL? -->
{{#projects}}
<h2 class="subtitle">{{name}}</h2>
<p>
{{#pulls_merged}}
<a href="{{url}}">#{{id}}</a>
{{/pulls_merged}}
</p>
{{/projects}}
<h1 class="subtitle">En attente</h1>
{{#waiting}}
<p>
{{#pulls_open}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_open}}
</p>
{{/waiting}}
<h1 class="subtitle">Non mergées</h1>
{{#closed}}
<p>
{{#pulls_closed}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_closed}}
</p>
{{/closed}}
</div>
{{/error}} {{/data}} {{> footer.html }}
</body>
</html>