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