2022-03-29 05:21:30 +02:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
2022-08-08 01:15:11 +02:00
|
|
|
<button class="ui basic small compact clone button no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
|
2020-12-28 19:30:06 +01:00
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-29 05:21:30 +02:00
|
|
|
{{if $.CloneButtonShowSSH}}
|
2022-08-08 01:15:11 +02:00
|
|
|
<button class="ui basic small compact clone button no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 19:30:06 +01:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-08-08 01:15:11 +02:00
|
|
|
<input id="repo-clone-url" size="20" class="js-clone-url br-0" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly>
|
|
|
|
<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"}}">
|
|
|
|
{{svg "octicon-copy" 14}}
|
2022-03-29 05:21:30 +02:00
|
|
|
</button>
|