mirror of
https://codeberg.org/gothub/gothub
synced 2024-12-06 19:16:24 +01:00
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
{{template "header" .}}
|
|
|
|
<main>
|
|
<h2>Trending repositories</h2>
|
|
<p><b>25</b> repositories shown, sorted by most stars.</p>
|
|
{{ if .repos}}
|
|
{{ range $key, $value := .repos}}
|
|
<a href="{{.Fullname}}" class="exploreIDontKnowWhatToNameThisDiv">
|
|
<div>
|
|
<p>{{.Fullname}}</p>
|
|
<p>{{.Description}}</p>
|
|
{{ if .Language }}
|
|
{{ if .License }}
|
|
<p>⭐ {{.Stars}} 🍴 {{.Forks}} 👀 {{.Watchers}} ⚖️ {{.License}} 🗒️ {{.Language}}</p>
|
|
{{ else }}
|
|
<p>⭐ {{.Stars}} 🍴 {{.Forks}} 👀 {{.Watchers}} ⚖️ No license 🗒️ {{.Language}}</p>
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ if .License }}
|
|
<p>⭐ {{.Stars}} 🍴 {{.Forks}} 👀 {{.Watchers}} ⚖️ {{.License}}</p>
|
|
{{ else }}
|
|
<p>⭐ {{.Stars}} 🍴 {{.Forks}} 👀 {{.Watchers}} ⚖️ No license</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
{{ else }}
|
|
<p>There are no trending repositories at the moment.</p>
|
|
{{ end }}
|
|
</main>
|
|
</body>
|
|
</html>
|