<!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>