Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

clone_buttons.tmpl 829B

123456789101112131415
  1. <!-- there is always at least one button (by context/repo.go) -->
  2. {{if $.CloneButtonShowHTTPS}}
  3. <button class="ui basic small compact clone button no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
  4. {{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
  5. </button>
  6. {{end}}
  7. {{if $.CloneButtonShowSSH}}
  8. <button class="ui basic small compact clone button no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
  9. SSH
  10. </button>
  11. {{end}}
  12. <input id="repo-clone-url" size="20" class="js-clone-url br-0" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly>
  13. <button class="ui basic small compact icon button tooltip" id="clipboard-btn" data-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{.locale.Tr "copy_url"}}">
  14. {{svg "octicon-copy" 14}}
  15. </button>