16 lines
436 B
HTML
16 lines
436 B
HTML
{{ define "main" }}
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
{{ .Content }}
|
|
{{ $url := printf "%s/%s/repos" .Site.Params.gh_url .Site.Params.gh_user }}
|
|
{{ $repos := getJSON $url }}
|
|
{{ $repos_local := getJSON "data/repos.json" }}
|
|
<section class="oss">
|
|
{{ range $repos_local }}
|
|
<article>
|
|
<h3><a href="{{ .html_url }}">{{ .name }}</a></h3>
|
|
<p>{{ .description }}</p>
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }} |