2022-03-29 03:21:30 +00:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
2023-05-29 12:45:22 +00:00
|
|
|
<button class="ui small compact clone button gt-no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
|
2023-04-07 07:31:41 +00:00
|
|
|
HTTPS
|
2020-12-28 18:30:06 +00:00
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-29 03:21:30 +00:00
|
|
|
{{if $.CloneButtonShowSSH}}
|
2023-05-29 12:45:22 +00:00
|
|
|
<button class="ui small compact clone button gt-no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 18:30:06 +00:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2023-02-13 17:59:59 +00:00
|
|
|
<input id="repo-clone-url" size="20" class="js-clone-url gt-br-0" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly>
|
2023-03-24 10:35:38 +00:00
|
|
|
<button class="ui basic small compact icon button" id="clipboard-btn" data-tooltip-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{.locale.Tr "copy_url"}}">
|
2022-08-07 23:15:11 +00:00
|
|
|
{{svg "octicon-copy" 14}}
|
2022-03-29 03:21:30 +00:00
|
|
|
</button>
|