2015-11-26 23:24:24 -06:00
{{template "base/head" .}}
2020-11-30 22:00:14 -06:00
<div class="page-content repository wiki view">
2015-11-26 23:24:24 -06:00
{{template "repo/header" .}}
2022-08-31 10:58:54 -05:00
{{ $ title := .title}}
2015-12-07 16:30:52 -06:00
<div class="ui container">
2022-08-07 18:15:11 -05:00
<div class="repo-button-row df ac sb fw">
<div class="df ac">
2015-12-07 16:30:52 -06:00
<div class="choose page">
2022-06-27 15:58:46 -05:00
<div class="ui floating filter dropdown" data-no-results="{{.locale.Tr "repo.pulls.no_results"}}">
2015-12-07 16:30:52 -06:00
<div class="ui basic small button">
<span class="text">
2022-06-27 15:58:46 -05:00
{{.locale.Tr "repo.wiki.page"}}:
2017-02-15 17:05:02 -06:00
<strong>{{ $ title }}</strong>
2015-12-07 16:30:52 -06:00
</span>
2020-10-31 17:15:11 -05:00
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
2015-12-07 16:30:52 -06:00
</div>
<div class="menu">
<div class="ui icon search input">
2020-11-09 12:21:47 -06:00
<i class="icon df ac jc m-0">{{svg "octicon-filter" 16}}</i>
2022-06-27 15:58:46 -05:00
<input name="search" placeholder="{{.locale.Tr "repo.wiki.filter_page"}}...">
2015-12-07 16:30:52 -06:00
</div>
2015-12-08 23:32:53 -06:00
<div class="scrolling menu">
2015-12-07 16:30:52 -06:00
{{range .Pages}}
2017-11-28 03:43:51 -06:00
<div class="item {{if eq $.Title .Name}}selected{{end}}" data-url="{{$.RepoLink}}/wiki/{{.SubURL}}">{{.Name}}</div>
2015-12-07 16:30:52 -06:00
{{end}}
</div>
</div>
</div>
</div>
</div>
2022-08-07 18:15:11 -05:00
<div class="df ac">
2015-12-07 16:30:52 -06:00
<div class="ui action small input" id="clone-panel">
2020-12-28 12:30:06 -06:00
{{template "repo/clone_buttons" .}}
2022-07-31 13:29:55 -05:00
{{template "repo/clone_script" .}}
2015-12-07 16:30:52 -06:00
</div>
</div>
</div>
2017-02-15 17:05:02 -06:00
<div class="ui dividing header">
2017-12-30 18:47:52 -06:00
<div class="ui stackable grid">
<div class="eight wide column">
2022-06-27 15:58:46 -05: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-30 18:47:52 -06:00
{{ $ title }}
<div class="ui sub header">
2022-06-27 15:58:46 -05:00
{{ $ timeSince := TimeSince .Author.When $.locale}}
{{.locale.Tr "repo.wiki.last_commit_info" .Author.Name $ timeSince | Safe}}
2017-12-30 18:47:52 -06:00
</div>
</div>
<div class="eight wide right aligned column">
2022-01-06 19:18:52 -06:00
{{if .EscapeStatus.Escaped}}
2022-06-27 15:58:46 -05: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-06 19:18:52 -06:00
{{end}}
2018-11-28 05:26:14 -06:00
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
2017-12-30 18:47:52 -06:00
<div class="ui right">
2022-06-27 15:58:46 -05: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-30 18:47:52 -06:00
</div>
{{end}}
2015-12-07 16:30:52 -06:00
</div>
</div>
</div>
2017-02-13 19:13:59 -06:00
{{if .FormatWarning}}
<div class="ui negative message">
<p>{{.FormatWarning}}</p>
</div>
{{end}}
2022-06-08 03:59:16 -05: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-06 19:18:52 -06:00
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $}}
{{.content | Safe}}
2017-02-13 19:13:59 -06:00
</div>
2022-06-08 03:59:16 -05:00
{{if or .sidebarPresent .toc}}
2017-02-13 19:13:59 -06:00
<div class="column" style="padding-top: 0;">
2022-06-08 03:59:16 -05:00
{{if .toc}}
<div class="ui segment wiki-content-toc">
<details open>
<summary>
2022-06-27 15:58:46 -05:00
<div class="ui header">{{.locale.Tr "toc"}}</div>
2022-06-08 03:59:16 -05: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 15:58:46 -05: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 03:59:16 -05:00
{{end}}
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .sidebarEscapeStatus "root" $}}
{{.sidebarContent | Safe}}
</div>
{{end}}
2017-02-13 19:13:59 -06:00
</div>
{{end}}
</div>
{{if .footerPresent}}
2022-01-06 19:18:52 -06:00
<div class="ui segment wiki-content-footer">
{{if and .CanWriteWiki (not .Repository.IsMirror)}}
2022-06-27 15:58:46 -05: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-06 19:18:52 -06:00
{{end}}
{{template "repo/unicode_escape_prompt" dict "footerEscapeStatus" .sidebarEscapeStatus "root" $}}
{{.footerContent | Safe}}
2015-11-26 23:24:24 -06:00
</div>
2017-02-13 19:13:59 -06:00
{{end}}
2015-11-26 23:24:24 -06:00
</div>
</div>
2016-03-03 16:06:50 -06:00
<div class="ui small basic delete modal">
<div class="ui icon header">
2021-03-21 23:04:19 -05:00
{{svg "octicon-trash"}}
2022-06-27 15:58:46 -05:00
{{.locale.Tr "repo.wiki.delete_page_button"}}
2016-03-03 16:06:50 -06:00
</div>
<div class="content">
2022-06-27 15:58:46 -05:00
<p>{{.locale.Tr "repo.wiki.delete_page_notice_1" ( $ title |Escape) | Safe}}</p>
2016-03-03 16:06:50 -06:00
</div>
{{template "base/delete_modal_actions" .}}
</div>
2015-12-07 16:30:52 -06:00
{{template "base/footer" .}}