page_links_div.html 499 B

123456789101112
  1. {{/* Div wrapper around page links. */}}
  2. {{/* The wrapper is hidden when the page has no link buttons. */}}
  3. {{ $has_attachments := partial "functions/has_attachments" . }}
  4. {{ if $has_attachments | or .Params.external_link }}
  5. <div class="btn-links mb-3">
  6. {{ with .Params.external_link }}
  7. <a class="btn btn-outline-primary my-1" href="{{ . }}" target="_blank" rel="noopener">{{ i18n "open_project_site" }}</a>
  8. {{ end }}
  9. {{ partial "page_links" (dict "page" . "is_list" 0) }}
  10. </div>
  11. {{ end }}