mylloon.fr/templates/contrib.html
Mylloon fac3e89d1c
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
minor fixes
2023-04-12 01:32:42 +02:00

35 lines
934 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>
<p>
{{#waiting}} {{#pulls_open}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_open}} {{/waiting}}
</p>
<h1 class="subtitle">Non mergées</h1>
<p>
{{#closed}} {{#pulls_closed}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_closed}} {{/closed}}
</p>
</div>
{{/error}} {{/data}} {{> footer.html }}
</body>
</html>