2022-03-28 23:21:30 -04:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
|
|
|
<button class="ui basic clone button no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
|
2020-12-28 13:30:06 -05:00
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-28 23:21:30 -04:00
|
|
|
{{if $.CloneButtonShowSSH}}
|
|
|
|
<button class="ui basic clone button no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 13:30:06 -05:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-08-01 22:52:05 -04:00
|
|
|
<input id="repo-clone-url" class="js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" size="1" readonly>
|
2022-07-26 11:43:13 -04:00
|
|
|
<button class="ui basic icon button tooltip" id="clipboard-btn" data-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{.locale.Tr "copy_url"}}">
|
2022-03-28 23:21:30 -04:00
|
|
|
{{svg "octicon-paste"}}
|
|
|
|
</button>
|