Skip to content

Commit

Permalink
Fix HTML issues
Browse files Browse the repository at this point in the history
Signed-off-by: reidspencer <reid.spencer@yoppworks.com>
  • Loading branch information
reid-spencer committed Nov 13, 2022
1 parent 2d31227 commit 6fad5d5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doc/src/hugo/layouts/shortcodes/ghcontributors.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<style type="text/css">
<style>
.ghContributors{
display:flex;
flex-flow: wrap;
Expand All @@ -17,13 +17,14 @@
font-size: x-small;
padding-left: 4px ;
}

</style>
<div class="ghContributors">
{{ $url := .Get 0 }}
{{ range getJSON $url }}
<div>
<img src="{{.avatar_url}}" class="inline" width="32" height="32" style="height: 32px;height: 32px;margin-bottom:.25em; vertical-align:middle; ">
<img alt="Avatar Images" src="{{.avatar_url}}" class="inline" width="32"
height="32"
style="height: 32px;margin-bottom:.25em; vertical-align:middle; ">
<label><a href="{{.html_url}}">@{{.login}}</a></label>
<span class="contributions">{{.contributions}} commits</span>
</div>
Expand Down

0 comments on commit 6fad5d5

Please sign in to comment.