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