mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
docs: remove unused and broken ghcontributors shortcode
This commit is contained in:
parent
aba7cb84a9
commit
e8d138c4d5
1 changed files with 0 additions and 31 deletions
|
@ -1,31 +0,0 @@
|
||||||
<style type="text/css">
|
|
||||||
.ghContributors{
|
|
||||||
display:flex;
|
|
||||||
flex-flow: wrap;
|
|
||||||
align-content: flex-start
|
|
||||||
}
|
|
||||||
|
|
||||||
.ghContributors > div{
|
|
||||||
width: 50% ;
|
|
||||||
display: inline-flex;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
.ghContributors > div label{
|
|
||||||
padding-left: 4px ;
|
|
||||||
}
|
|
||||||
.ghContributors > div span{
|
|
||||||
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; ">
|
|
||||||
<label><a href="{{.html_url}}">@{{.login}}</a></label>
|
|
||||||
<span class="contributions">{{.contributions}} commits</span>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
Loading…
Reference in a new issue