2022-11-06 04:34:34 +09:00
|
|
|
{{template "header" .}}
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<h2>Trending repositories</h2>
|
|
|
|
<p><b>25</b> repositories shown, sorted by most stars.</p>
|
|
|
|
{{ if .repos}}
|
|
|
|
{{ range $key, $value := .repos}}
|
2023-02-14 00:53:20 +09:00
|
|
|
<a href="{{.Fullname}}" class="exploreIDontKnowWhatToNameThisDiv">
|
|
|
|
<div>
|
|
|
|
<p>{{.Fullname}}</p>
|
2022-11-06 04:34:34 +09:00
|
|
|
<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 }}
|
2023-02-14 00:53:20 +09:00
|
|
|
</div>
|
|
|
|
</a>
|
2022-11-06 04:34:34 +09:00
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
<p>There are no trending repositories at the moment.</p>
|
|
|
|
{{ end }}
|
2023-03-08 01:00:33 +09:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|