mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
712 B
13 lines
712 B
<!-- there is always at least one button (guaranteed by context/repo.go) --> |
|
<div class="ui action small input clone-buttons-combo"> |
|
{{if $.CloneButtonShowHTTPS}} |
|
<button class="ui small button repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">HTTPS</button> |
|
{{end}} |
|
{{if $.CloneButtonShowSSH}} |
|
<button class="ui small button repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">SSH</button> |
|
{{end}} |
|
<input size="10" class="repo-clone-url js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" readonly> |
|
<button class="ui small icon button" data-clipboard-target=".repo-clone-url" data-tooltip-content="{{ctx.Locale.Tr "copy_url"}}"> |
|
{{svg "octicon-copy" 14}} |
|
</button> |
|
</div>
|
|
|