2015-11-27 05:24:24 +00:00
{{template "base/head" .}}
2023-02-01 22:56:10 +00:00
<div role="main" aria-label="{{.Title}}" class="page-content repository wiki view">
2015-11-27 05:24:24 +00:00
{{template "repo/header" .}}
2022-08-31 15:58:54 +00:00
{{ $ title := .title}}
2015-12-07 22:30:52 +00:00
<div class="ui container">
2022-08-07 23:15:11 +00:00
<div class="repo-button-row df ac sb fw">
<div class="df ac">
2015-12-07 22:30:52 +00:00
<div class="choose page">
2022-06-27 20:58:46 +00:00
<div class="ui floating filter dropdown" data-no-results="{{.locale.Tr "repo.pulls.no_results"}}">
2015-12-07 22:30:52 +00:00
<div class="ui basic small button">
<span class="text">
2022-06-27 20:58:46 +00:00
{{.locale.Tr "repo.wiki.page"}}:
2017-02-15 23:05:02 +00:00
<strong>{{ $ title }}</strong>
2015-12-07 22:30:52 +00:00
</span>
2020-10-31 22:15:11 +00:00
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
2015-12-07 22:30:52 +00:00
</div>
<div class="menu">
<div class="ui icon search input">
2020-11-09 18:21:47 +00:00
<i class="icon df ac jc m-0">{{svg "octicon-filter" 16}}</i>
2022-06-27 20:58:46 +00:00
<input name="search" placeholder="{{.locale.Tr "repo.wiki.filter_page"}}...">
2015-12-07 22:30:52 +00:00
</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>
2022-08-07 23:15:11 +00:00
<div class="df ac">
2015-12-07 22:30:52 +00:00
<div class="ui action small input" id="clone-panel">
2020-12-28 18:30:06 +00:00
{{template "repo/clone_buttons" .}}
2022-07-31 18:29:55 +00:00
{{template "repo/clone_script" .}}
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">
2022-06-27 20:58:46 +00:00
<a class="file-revisions-btn ui basic button" title="{{.locale.Tr "repo.wiki.file_revision"}}" href="{{.RepoLink}}/wiki/{{.PageURL}}?action=_revision" ><span>{{.CommitCount}}</span> {{svg "octicon-history"}}</a>
2017-12-31 00:47:52 +00:00
{{ $ title }}
<div class="ui sub header">
2022-06-27 20:58:46 +00:00
{{ $ timeSince := TimeSince .Author.When $.locale}}
{{.locale.Tr "repo.wiki.last_commit_info" .Author.Name $ timeSince | Safe}}
2017-12-31 00:47:52 +00:00
</div>
</div>
<div class="eight wide right aligned column">
2022-01-07 01:18:52 +00:00
{{if .EscapeStatus.Escaped}}
2022-06-27 20:58:46 +00:00
<a class="ui small button unescape-button" style="display: none;">{{.locale.Tr "repo.unescape_control_characters"}}</a>
<a class="ui small button escape-button">{{.locale.Tr "repo.escape_control_characters"}}</a>
2022-01-07 01:18:52 +00:00
{{end}}
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">
2022-06-27 20:58:46 +00:00
<a class="ui small button" href="{{.RepoLink}}/wiki/{{.PageURL}}?action=_edit">{{.locale.Tr "repo.wiki.edit_page_button"}}</a>
<a class="ui green small button" href="{{.RepoLink}}/wiki?action=_new">{{.locale.Tr "repo.wiki.new_page_button"}}</a>
<a class="ui red small button delete-button" href="" data-url="{{.RepoLink}}/wiki/{{.PageURL}}?action=_delete" data-id="{{.PageURL}}">{{.locale.Tr "repo.wiki.delete_page_button"}}</a>
2017-12-31 00:47:52 +00:00
</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}}
2022-06-08 08:59:16 +00:00
<div class="ui {{if or .sidebarPresent .toc}}grid equal width{{end}}" style="margin-top: 1rem;">
<div class="ui {{if or .sidebarPresent .toc}}eleven wide column{{end}} segment markup wiki-content-main">
2022-01-07 01:18:52 +00:00
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $}}
{{.content | Safe}}
2017-02-14 01:13:59 +00:00
</div>
2022-06-08 08:59:16 +00:00
{{if or .sidebarPresent .toc}}
2017-02-14 01:13:59 +00:00
<div class="column" style="padding-top: 0;">
2022-06-08 08:59:16 +00:00
{{if .toc}}
<div class="ui segment wiki-content-toc">
<details open>
<summary>
2022-06-27 20:58:46 +00:00
<div class="ui header">{{.locale.Tr "toc"}}</div>
2022-06-08 08:59:16 +00:00
</summary>
{{ $ level := 0}}
{{range .toc}}
{{if lt $ level .Level}}{{range Iterate (Subtract .Level $ level )}}<ul>{{end}}{{end}}
{{if gt $ level .Level}}{{range Iterate (Subtract $ level .Level)}}</ul>{{end}}{{end}}
{{ $ level = .Level}}
<li><a href=" #{{.ID}}">{{.Text}}</a></li>
{{end}}
{{range Iterate $ level }}</ul>{{end}}
</details>
</div>
{{end}}
{{if .sidebarPresent}}
<div class="ui segment wiki-content-sidebar">
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
2022-06-27 20:58:46 +00:00
<a class="ui right floated muted" href="{{.RepoLink}}/wiki/_Sidebar?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
2022-06-08 08:59:16 +00:00
{{end}}
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .sidebarEscapeStatus "root" $}}
{{.sidebarContent | Safe}}
</div>
{{end}}
2017-02-14 01:13:59 +00:00
</div>
{{end}}
</div>
{{if .footerPresent}}
2022-01-07 01:18:52 +00:00
<div class="ui segment wiki-content-footer">
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
2022-06-27 20:58:46 +00:00
<a class="ui right floated muted" href="{{.RepoLink}}/wiki/_Footer?action=_edit" aria-label="{{.locale.Tr "repo.wiki.edit_page_button"}}">{{svg "octicon-pencil"}}</a>
2022-01-07 01:18:52 +00:00
{{end}}
{{template "repo/unicode_escape_prompt" dict "footerEscapeStatus" .sidebarEscapeStatus "root" $}}
{{.footerContent | Safe}}
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">
2021-03-22 04:04:19 +00:00
{{svg "octicon-trash"}}
2022-06-27 20:58:46 +00:00
{{.locale.Tr "repo.wiki.delete_page_button"}}
2016-03-03 22:06:50 +00:00
</div>
<div class="content">
2022-06-27 20:58:46 +00:00
<p>{{.locale.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" .}}