2022-03-29 03:21:30 +00:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
2023-08-28 01:26:23 +00:00
|
|
|
<button class="ui small compact clone button" 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-08-28 01:26:23 +00:00
|
|
|
<button class="ui small compact clone button" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 18:30:06 +00:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2023-07-08 09:53:56 +00:00
|
|
|
<input id="repo-clone-url" size="20" class="js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly>
|
2023-09-25 12:42:40 +00:00
|
|
|
<button class="ui basic small compact icon button" id="clipboard-btn" data-tooltip-content="{{ctx.Locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{ctx.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>
|