2015-11-27 06:24:24 +01:00
{{ template "base/head" . }}
2023-02-01 23:56:10 +01:00
< div role = "main" aria-label = " {{ .Title }} " class = "page-content repository wiki view" >
2015-11-27 06:24:24 +01:00
{{ template "repo/header" . }}
2022-08-31 17:58:54 +02:00
{{ $title := .title }}
2015-12-07 23:30:52 +01:00
< div class = "ui container" >
2023-06-15 17:12:08 +02:00
< div class = "repo-button-row" >
2024-03-22 20:51:29 +01:00
< div class = "tw-flex tw-items-center" >
2023-09-25 10:56:50 +02:00
< div class = "ui floating filter dropdown" data-no-results = " {{ ctx .Locale.Tr "repo.pulls.no_results" }} " >
2023-04-19 19:50:10 +02:00
< div class = "ui basic small button" >
< span class = "text" >
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.wiki.page" }} :
2023-04-19 19:50:10 +02:00
< strong > {{ $title }} </ strong >
< / span >
{{ svg "octicon-triangle-down" 14 "dropdown icon" }}
< / div >
< div class = "menu" >
< div class = "ui icon search input" >
2023-06-14 18:40:15 +02:00
< i class = "icon" > {{ svg "octicon-filter" 16 }} </ i >
2023-09-25 10:56:50 +02:00
< input name = "search" placeholder = " {{ ctx .Locale.Tr "repo.wiki.filter_page" }} ..." >
2015-12-07 23:30:52 +01:00
< / div >
2023-04-19 19:50:10 +02:00
< div class = "scrolling menu" >
2023-09-25 10:56:50 +02:00
< a class = "item muted" href = " {{ .RepoLink }} /wiki/?action=_pages" > {{ ctx .Locale.Tr "repo.wiki.pages" }} </ a >
2023-06-29 14:24:22 +02:00
< div class = "divider" > < / div >
2023-04-19 19:50:10 +02:00
{{ range .Pages }}
< a class = "item {{ if eq $.Title .Name }} selected {{ end }} " href = " {{ $.RepoLink }} /wiki/ {{ .SubURL }} " > {{ .Name }} </ a >
{{ end }}
2015-12-07 23:30:52 +01:00
< / div >
< / div >
< / div >
< / div >
2024-03-17 13:40:42 +01:00
< div class = "clone-panel ui action small input" >
2023-04-19 19:50:10 +02:00
{{ template "repo/clone_buttons" . }}
{{ template "repo/clone_script" . }}
2015-12-07 23:30:52 +01:00
< / div >
< / div >
2017-02-16 00:05:02 +01:00
< div class = "ui dividing header" >
2017-12-31 01:47:52 +01:00
< div class = "ui stackable grid" >
< div class = "eight wide column" >
2023-09-25 10:56:50 +02:00
< a class = "file-revisions-btn ui basic button" title = " {{ ctx .Locale.Tr "repo.wiki.file_revision" }} " href = " {{ .RepoLink }} /wiki/ {{ .PageURL }} ?action=_revision" >< span > {{ .CommitCount }} </ span > {{ svg "octicon-history" }} </ a >
2017-12-31 01:47:52 +01:00
{{ $title }}
< div class = "ui sub header" >
2023-09-25 14:42:40 +02:00
{{ $timeSince := TimeSince .Author.When ctx .Locale }}
2024-02-22 18:02:33 +01:00
{{ ctx .Locale.Tr "repo.wiki.last_commit_info" .Author.Name $timeSince }}
2017-12-31 01:47:52 +01:00
< / div >
< / div >
< div class = "eight wide right aligned column" >
2022-01-07 02:18:52 +01:00
{{ if .EscapeStatus.Escaped }}
2024-03-24 19:23:38 +01:00
< a class = "ui small button unescape-button tw-hidden" > {{ ctx .Locale.Tr "repo.unescape_control_characters" }} </ a >
2023-09-25 10:56:50 +02:00
< a class = "ui small button escape-button" > {{ ctx .Locale.Tr "repo.escape_control_characters" }} </ a >
2022-01-07 02:18:52 +01:00
{{ end }}
2018-11-28 12:26:14 +01:00
{{ if and .CanWriteWiki ( not .Repository.IsMirror ) }}
2017-12-31 01:47:52 +01:00
< div class = "ui right" >
2023-09-25 10:56:50 +02:00
< a class = "ui small button" href = " {{ .RepoLink }} /wiki/ {{ .PageURL }} ?action=_edit" > {{ ctx .Locale.Tr "repo.wiki.edit_page_button" }} </ a >
< a class = "ui small primary button" href = " {{ .RepoLink }} /wiki?action=_new" > {{ ctx .Locale.Tr "repo.wiki.new_page_button" }} </ a >
< a class = "ui small red button delete-button" href = "" data-url = " {{ .RepoLink }} /wiki/ {{ .PageURL }} ?action=_delete" data-id = " {{ .PageURL }} " > {{ ctx .Locale.Tr "repo.wiki.delete_page_button" }} </ a >
2017-12-31 01:47:52 +01:00
< / div >
{{ end }}
2015-12-07 23:30:52 +01:00
< / div >
< / div >
< / div >
2017-02-14 02:13:59 +01:00
{{ if .FormatWarning }}
< div class = "ui negative message" >
< p > {{ .FormatWarning }} </ p >
< / div >
{{ end }}
2023-06-23 21:51:43 +02:00
< div class = "wiki-content-parts" >
{{ if .sidebarTocContent }}
< div class = "markup wiki-content-sidebar wiki-content-toc" >
2024-02-25 11:45:56 +01:00
{{ .sidebarTocContent | SafeHTML }}
2023-06-23 21:51:43 +02:00
< / div >
{{ end }}
< div class = "markup wiki-content-main {{ if or .sidebarTocContent .sidebarPresent }} with-sidebar {{ end }} " >
2022-01-07 02:18:52 +01:00
{{ template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $ }}
2024-02-25 11:45:56 +01:00
{{ .content | SafeHTML }}
2017-02-14 02:13:59 +01:00
< / div >
2023-06-23 21:51:43 +02:00
{{ if .sidebarPresent }}
< div class = "markup wiki-content-sidebar" >
{{ if and .CanWriteWiki ( not .Repository.IsMirror ) }}
2024-03-04 04:33:20 +01:00
< a class = "tw-float-right muted" href = " {{ .RepoLink }} /wiki/_Sidebar?action=_edit" aria-label = " {{ ctx .Locale.Tr "repo.wiki.edit_page_button" }} " > {{ svg "octicon-pencil" }} </ a >
2022-06-08 10:59:16 +02:00
{{ end }}
2023-06-23 21:51:43 +02:00
{{ template "repo/unicode_escape_prompt" dict "EscapeStatus" .sidebarEscapeStatus "root" $ }}
2024-02-25 11:45:56 +01:00
{{ .sidebarContent | SafeHTML }}
2017-02-14 02:13:59 +01:00
< / div >
{{ end }}
2023-06-23 21:51:43 +02:00
2024-03-04 04:33:20 +01:00
< div class = "tw-clear-both" > < / div >
2023-06-23 21:51:43 +02:00
{{ if .footerPresent }}
< div class = "markup wiki-content-footer" >
{{ if and .CanWriteWiki ( not .Repository.IsMirror ) }}
2024-03-04 04:33:20 +01:00
< a class = "tw-float-right muted" href = " {{ .RepoLink }} /wiki/_Footer?action=_edit" aria-label = " {{ ctx .Locale.Tr "repo.wiki.edit_page_button" }} " > {{ svg "octicon-pencil" }} </ a >
2023-06-23 21:51:43 +02:00
{{ end }}
{{ template "repo/unicode_escape_prompt" dict "footerEscapeStatus" .sidebarEscapeStatus "root" $ }}
2024-02-25 11:45:56 +01:00
{{ .footerContent | SafeHTML }}
2023-06-23 21:51:43 +02:00
< / div >
2022-01-07 02:18:52 +01:00
{{ end }}
2015-11-27 06:24:24 +01:00
< / div >
< / div >
< / div >
2016-03-03 23:06:50 +01:00
2023-04-24 13:08:59 +02:00
< div class = "ui g-modal-confirm delete modal" >
2023-04-23 11:24:19 +02:00
< div class = "header" >
2021-03-22 05:04:19 +01:00
{{ svg "octicon-trash" }}
2023-09-25 10:56:50 +02:00
{{ ctx .Locale.Tr "repo.wiki.delete_page_button" }}
2016-03-03 23:06:50 +01:00
< / div >
< div class = "content" >
2024-02-25 15:02:20 +01:00
< p > {{ ctx .Locale.Tr "repo.wiki.delete_page_notice_1" $title }} </ p >
2016-03-03 23:06:50 +01:00
< / div >
2023-04-23 11:24:19 +02:00
{{ template "base/modal_actions_confirm" . }}
2016-03-03 23:06:50 +01:00
< / div >
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}