1<style type="text/css"> 2.ghContributors{ 3display:flex; 4flex-flow: wrap; 5align-content: flex-start 6} 7 8.ghContributors > div{ 9width: 50% ; 10display: inline-flex; 11margin-bottom: 5px; 12} 13.ghContributors > div label{ 14padding-left: 4px ; 15} 16.ghContributors > div span{ 17font-size: x-small; 18padding-left: 4px ; 19} 20 21</style> 22<div class="ghContributors"> 23 {{ $url := .Get 0 }} 24 {{ range getJSON $url }} 25 <div> 26 <img src="{{.avatar_url}}" class="inline" width="32" height="32" style="height: 32px;height: 32px;margin-bottom:.25em; vertical-align:middle; "> 27 <label><a href="{{.html_url}}">@{{.login}}</a></label> 28 <span class="contributions">{{.contributions}} commits</span> 29 </div> 30 {{ end }} 31</div>