mylloon.fr/templates/contrib.html

37 lines
838 B
HTML
Raw Normal View History

2023-02-20 15:14:08 +01:00
<!DOCTYPE html>
<html class="index" lang="fr">
2023-04-11 10:16:46 +02:00
{{> header.html }}
2023-02-20 15:14:08 +01:00
<body>
2023-04-12 01:04:16 +02:00
{{#data}}
2023-02-20 15:14:08 +01:00
<div id="content">
<h1 class="subtitle">Mes contributions</h1>
2023-04-12 01:04:16 +02:00
<!-- Add URL? -->
{{#projects}}
<h2 class="subtitle">{{name}}</h2>
2023-02-20 15:14:08 +01:00
<p>
2023-04-12 01:04:16 +02:00
{{#pulls_merged}}
<a href="{{url}}">#{{id}}</a>
{{/pulls_merged}}
2023-02-20 15:14:08 +01:00
</p>
2023-04-12 01:04:16 +02:00
{{/projects}}
2023-02-20 15:14:08 +01:00
<h1 class="subtitle">En attente</h1>
2023-04-12 01:04:16 +02:00
{{#waiting}}
2023-02-20 15:14:08 +01:00
<p>
2023-04-12 01:04:16 +02:00
{{#pulls_open}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_open}}
2023-02-20 15:14:08 +01:00
</p>
2023-04-12 01:04:16 +02:00
{{/waiting}}
2023-02-20 15:14:08 +01:00
<h1 class="subtitle">Non mergées</h1>
2023-04-12 01:04:16 +02:00
{{#closed}}
2023-02-20 15:14:08 +01:00
<p>
2023-04-12 01:04:16 +02:00
{{#pulls_closed}}
<a href="{{url}}">{{name}}#{{id}}</a>
{{/pulls_closed}}
2023-02-20 15:14:08 +01:00
</p>
2023-04-12 01:04:16 +02:00
{{/closed}}
2023-02-20 15:14:08 +01:00
</div>
2023-04-12 01:04:16 +02:00
{{/data}} {{> footer.html }}
2023-02-20 15:14:08 +01:00
</body>
</html>