blob: 101f2ddbd84ed798a6b5d8892ed0f385f8446b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<label id="url-embed" for="url-embed-input"><b>Embed</b> HTML code</label>
<input id="url-embed-input" type="text" class="fullwidthtext" value="{{htmlhelper.getRepositoryEmbedCode(repo)}}"/>
{% if repo.getCloneURL(true) %}
<label id="url-public" for="url-public-input"><b>Public</b> clone URL</label>
<input id="url-public-input" type="text" class="fullwidthtext" value="{{repo.getCloneURL(true)}}"/>
{% endif %}
{% if repo.getCloneURL(false) %}
<label id="url-private" for="url-private-input"><b>Private</b> clone URL</label>
<input id="url-private-input" type="text" class="fullwidthtext" value="{{repo.getCloneURL(false)}}"/>
{% endif %}
|