2015-11-27 05:24:24 +00:00
{{template "base/head" .}}
<div class="repository wiki view">
{{template "repo/header" .}}
2017-11-22 07:09:48 +00:00
{{ $ title := .title}}
2015-12-07 22:30:52 +00:00
<div class="ui container">
2020-07-29 16:30:37 +00:00
<div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins">
<div class="fitted item">
2015-12-07 22:30:52 +00:00
<div class="choose page">
<div class="ui floating filter dropdown" data-no-results="{{.i18n.Tr "repo.pulls.no_results"}}">
<div class="ui basic small button">
<span class="text">
{{.i18n.Tr "repo.wiki.page"}}:
2017-02-15 23:05:02 +00:00
<strong>{{ $ title }}</strong>
2015-12-07 22:30:52 +00:00
</span>
<i class="dropdown icon"></i>
</div>
<div class="menu">
<div class="ui icon search input">
<i class="filter icon"></i>
<input name="search" placeholder="{{.i18n.Tr "repo.wiki.filter_page"}}...">
</div>
2015-12-09 05:32:53 +00:00
<div class="scrolling menu">
2015-12-07 22:30:52 +00:00
{{range .Pages}}
2017-11-28 09:43:51 +00:00
<div class="item {{if eq $.Title .Name}}selected{{end}}" data-url="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</div>
2015-12-07 22:30:52 +00:00
{{end}}
</div>
</div>
</div>
</div>
</div>
2020-07-29 16:30:37 +00:00
<div class="right fitted item">
2015-12-07 22:30:52 +00:00
<div class="ui action small input" id="clone-panel">
2016-09-18 08:54:33 +00:00
{{if not $.DisableHTTP}}
2016-10-04 16:58:14 +00:00
<button class="ui basic clone button" id="repo-clone-https" data-link="{{.WikiCloneLink.HTTPS}}">
2016-09-18 08:54:33 +00:00
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
</button>
{{end}}
2017-07-15 14:21:51 +00:00
{{if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
2016-10-04 16:58:14 +00:00
<button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.WikiCloneLink.SSH}}">
2015-12-07 22:30:52 +00:00
SSH
</button>
{{end}}
2016-09-18 08:54:33 +00:00
{{if not $.DisableHTTP}}
2016-10-04 16:58:14 +00:00
<input id="repo-clone-url" value="{{$.WikiCloneLink.HTTPS}}" readonly>
2017-07-15 14:21:51 +00:00
{{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
2016-10-04 16:58:14 +00:00
<input id="repo-clone-url" value="{{$.WikiCloneLink.SSH}}" readonly>
2016-09-18 08:54:33 +00:00
{{end}}
2020-03-03 08:00:36 +00:00
{{if or (not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH))}}
2017-07-15 14:21:51 +00:00
<button class="ui basic icon button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target=" #repo - clone - url " >
2020-02-11 17:02:41 +00:00
{{svg "octicon-clippy" 16}}
2017-07-15 14:21:51 +00:00
</button>
{{end}}
2015-12-07 22:30:52 +00:00
</div>
</div>
</div>
2017-02-15 23:05:02 +00:00
<div class="ui dividing header">
2017-12-31 00:47:52 +00:00
<div class="ui stackable grid">
<div class="eight wide column">
2020-07-17 15:15:12 +00:00
<a class="file-revisions-btn ui basic button" title="{{.i18n.Tr "repo.wiki.file_revision"}}" href="{{.RepoLink}}/wiki/{{.PageURL}}/_revision" ><span>{{.CommitCount}}</span> {{svg "octicon-history" 16}}</a>
2017-12-31 00:47:52 +00:00
{{ $ title }}
<div class="ui sub header">
{{ $ timeSince := TimeSince .Author.When $.Lang}}
{{.i18n.Tr "repo.wiki.last_commit_info" .Author.Name $ timeSince | Safe}}
</div>
</div>
<div class="eight wide right aligned column">
2018-11-28 11:26:14 +00:00
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
2017-12-31 00:47:52 +00:00
<div class="ui right">
<a class="ui small button" href="{{.RepoLink}}/wiki/{{.PageURL}}/_edit">{{.i18n.Tr "repo.wiki.edit_page_button"}}</a>
<a class="ui green small button" href="{{.RepoLink}}/wiki/_new">{{.i18n.Tr "repo.wiki.new_page_button"}}</a>
<a class="ui red small button delete-button" href="" data-url="{{.RepoLink}}/wiki/{{.PageURL}}/delete" data-id="{{.PageURL}}">{{.i18n.Tr "repo.wiki.delete_page_button"}}</a>
</div>
{{end}}
2015-12-07 22:30:52 +00:00
</div>
</div>
</div>
2017-02-14 01:13:59 +00:00
{{if .FormatWarning}}
<div class="ui negative message">
<p>{{.FormatWarning}}</p>
</div>
{{end}}
<div class="ui {{if .sidebarPresent}}grid equal width{{end}}" style="margin-top: 1rem;">
2020-05-01 17:58:45 +00:00
<div class="ui {{if .sidebarPresent}}eleven wide column{{end}} segment markdown">
2017-02-14 01:13:59 +00:00
{{.content | Str2html}}
</div>
{{if .sidebarPresent}}
<div class="column" style="padding-top: 0;">
<div class="ui segment">
{{.sidebarContent | Str2html}}
</div>
</div>
{{end}}
</div>
{{if .footerPresent}}
2017-11-28 09:43:51 +00:00
<div class="ui segment">
2017-02-14 01:13:59 +00:00
{{.footerContent | Str2html}}
2015-11-27 05:24:24 +00:00
</div>
2017-02-14 01:13:59 +00:00
{{end}}
2015-11-27 05:24:24 +00:00
</div>
</div>
2016-03-03 22:06:50 +00:00
<div class="ui small basic delete modal">
<div class="ui icon header">
<i class="trash icon"></i>
{{.i18n.Tr "repo.wiki.delete_page_button"}}
</div>
<div class="content">
2018-02-18 20:06:37 +00:00
<p>{{.i18n.Tr "repo.wiki.delete_page_notice_1" ( $ title |Escape) | Safe}}</p>
2016-03-03 22:06:50 +00:00
</div>
{{template "base/delete_modal_actions" .}}
</div>
2015-12-07 22:30:52 +00:00
{{template "base/footer" .}}