mylloon.fr/templates/contrib.html
Mylloon a50d894926
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
wip contrib logic
2023-04-12 01:04:16 +02:00

36 lines
838 B
HTML

<!DOCTYPE html>
<html class="index" lang="fr">
{{> header.html }}
<body>
{{#data}}
<div id="content">
<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>
{{/data}} {{> footer.html }}
</body>
</html>