2022-03-28 21:21:30 -06:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
2024-03-17 06:40:42 -06:00
|
|
|
<button class="ui small button" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
|
2023-04-07 01:31:41 -06:00
|
|
|
HTTPS
|
2020-12-28 11:30:06 -07:00
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-28 21:21:30 -06:00
|
|
|
{{if $.CloneButtonShowSSH}}
|
2024-03-17 06:40:42 -06:00
|
|
|
<button class="ui small button" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 11:30:06 -07:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2024-05-02 13:10:49 -06:00
|
|
|
<input id="repo-clone-url" size="10" class="js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly>
|
2024-03-17 06:40:42 -06:00
|
|
|
<button class="ui small 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 17:15:11 -06:00
|
|
|
{{svg "octicon-copy" 14}}
|
2022-03-28 21:21:30 -06:00
|
|
|
</button>
|