github.com/google/cloudprober@v0.11.3/docs/themes/hugo-material-docs/layouts/partials/drawer.html (about)

     1  <nav aria-label="Navigation">
     2    <a href="{{ with .Site.Params.repo_url }}{{ . }}{{ else }}{{ .Site.BaseURL }}{{ end }}" class="project">
     3      <div class="banner">
     4        {{ with .Site.Params.logo }}
     5          <div class="logo">
     6            <img src="{{ $.Site.BaseURL }}{{ . }}">
     7          </div>
     8        {{ end }}
     9        <div class="name">
    10          <strong>{{ .Site.Title }} {{ with .Site.Params.version }}<span class="version">{{ . }}</span>{{ end }}</strong>
    11          {{ with .Scratch.Get "repo_id" }}
    12            <br>
    13            {{ . }}
    14          {{ end }}
    15        </div>
    16      </div>
    17    </a>
    18  
    19    <div class="scrollable">
    20      <div class="wrapper">
    21        {{ if (eq (trim .Site.Params.provider " " | lower) "github") | and (isset .Site.Params "repo_url") }}
    22          <ul class="repo">
    23            <li class="repo-download">
    24              <a href="{{ .Site.Params.repo_url }}/archive/master.zip" target="_blank" title="Download" data-action="download">
    25                <i class="icon icon-download"></i> Download
    26              </a>
    27            </li>
    28            <li class="repo-stars">
    29              <a href="{{ .Site.Params.repo_url }}/stargazers" target="_blank" title="Stargazers" data-action="star">
    30                <i class="icon icon-star"></i> Stars
    31                <span class="count">&ndash;</span>
    32              </a>
    33            </li>
    34          </ul>
    35          <hr>
    36        {{ end }}
    37  
    38        <div class="toc">
    39          {{ if gt (len .Site.Menus.main) 0 }}
    40          <ul>
    41            {{ partial "nav" . }}
    42          </ul>
    43          {{ end }}
    44  
    45          {{ if isset .Site.Params "author" }}
    46          <hr>
    47          <span class="section">The author</span>
    48          
    49          <ul>
    50            {{ with .Site.Social.twitter }}
    51            <li>
    52              <a href="https://twitter.com/{{ . }}" target="_blank" title="@{{ . }} on Twitter">
    53                @{{ . }} on Twitter
    54              </a>
    55            </li>
    56            {{ end }}
    57  
    58            {{ with .Site.Social.github }}
    59            <li>
    60              <a href="https://github.com/{{ . }}" target="_blank" title="@{{ . }} on GitHub">
    61                @{{ . }} on GitHub
    62              </a>
    63            </li>
    64            {{ end }}
    65  
    66            {{ with .Site.Social.email }}
    67            <li>
    68              <a href="mailto:{{ . }}" title="Email of {{ . }}">
    69                Contact via email
    70              </a>
    71            </li>
    72            {{ end }}
    73          </ul>
    74          {{ end }}
    75        </div>
    76      </div>
    77    </div>
    78  </nav>