35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
{{ $links := .Site.Params.links }}
|
|
|
|
<section class="row td-box td-box--4 td-box--gradient td-box--height-auto linkbox">
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
<h2>Learn and Connect</h2>
|
|
<p>Using or want to use {{ .Site.Title }}? Find out more here:
|
|
{{ with index $links "user"}}
|
|
{{ template "community-links-list" . }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
|
<h2>Develop and Contribute</h2>
|
|
<p>minikube is a Kubernetes <a href="https://github.com/kubernetes/community/tree/master/sig-cluster-lifecycle">#sig-cluster-lifecycle</a> project.</p>
|
|
<p>If you want to get more involved by contributing to {{ .Site.Title }}, join us here:
|
|
{{ with index $links "developer"}}
|
|
{{ template "community-links-list" . }}
|
|
{{ end }}
|
|
<p>You can find out how to contribute to these docs in our <a href="/docs/contribution-guidelines/">Contribution Guidelines</a>.
|
|
<h2>Join our meetings</h2>
|
|
{{ with index $links "meetings"}}
|
|
{{ template "community-links-list" . }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
|
|
{{ define "community-links-list" }}
|
|
<ul>
|
|
{{ range . }}
|
|
<li title="{{ .name }}">
|
|
<a target="_blank" href="{{ .url }}"><i class="{{ .icon }}"></i> {{ .name }}:</a> {{ .desc }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|