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