github.com/cs3org/reva/v2@v2.27.7/docs/layouts/partials/community_links.html (about)

     1  {{ $links := .Site.Params.links }}
     2  
     3  <div class="col-lg-4 mb-5 mb-lg-0 text-center ">
     4    <div class="mb-4 h1">
     5      <i class="fas fas-network-wired"></i>
     6    </div>
     7    <h4 class="h3"></h4>
     8    <p class="mb-0"></p>
     9  </div>
    10  
    11  <section class="row td-box td-box--4 td-box--gradient td-box--height-auto linkbox">
    12  <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
    13  <h2>Learn and Connect</h2>		
    14  <p>Using or want to use {{ .Site.Title }}? Find out more here:
    15  {{ with index $links "user"}}
    16  {{ template "community-links-list"  . }}
    17  {{ end }}
    18  </div>
    19  <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
    20  <h2>Develop and Contribute</h2>
    21  <p>If you want to get more involved by contributing to {{ .Site.Title }}, join us here:
    22  {{ with index $links "developer"}}
    23  {{ template "community-links-list"  . }}
    24  {{ end }}
    25  <p>You can find out how to contribute to these docs in our <a href="/docs/contribution-guidelines/">Contribution Guidelines</a>.
    26  </div>
    27  </section>
    28  
    29  {{ define "community-links-list" }}
    30  <ul>
    31   {{ range . }}
    32   <li title="{{ .name }}">
    33     <a target="_blank" href="{{ .url }}"><i class="{{ .icon }}"></i> {{ .name }}:</a> {{ .desc }}
    34   </li>
    35    {{ end }}
    36  </ul>
    37  {{ end }}