2015-11-27 10:54:24 +05:30
{{ template "base/head" . }}
2020-12-01 09:30:14 +05:30
<div class="page-content repository wiki view">
2015-11-27 10:54:24 +05:30
{{ template "repo/header" . }}
2017-11-22 12:39:48 +05:30
{{ $ title : = .title }}
2015-12-08 04:00:52 +05:30
<div class="ui container">
2020-07-29 22:00:37 +05:30
<div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins">
<div class="fitted item">
2015-12-08 04:00:52 +05:30
<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-16 04:35:02 +05:30
<strong> {{ $ title }} </strong>
2015-12-08 04:00:52 +05:30
</span>
2020-11-01 03:45:11 +05:30
{{ svg "octicon-triangle-down" 1 4 "dropdown icon" }}
2015-12-08 04:00:52 +05:30
</div>
<div class="menu">
<div class="ui icon search input">
2020-11-09 23:51:47 +05:30
<i class="icon df ac jc m-0"> {{ svg "octicon-filter" 1 6 }} </i>
2015-12-08 04:00:52 +05:30
<input name="search" placeholder=" {{ .i18n .Tr "repo.wiki.filter_page" }} ...">
</div>
2015-12-09 11:02:53 +05:30
<div class="scrolling menu">
2015-12-08 04:00:52 +05:30
{{ range .Pages }}
2017-11-28 15:13:51 +05:30
<div class="item {{ if eq $ .Title .Name }} selected {{ end }} " data-url=" {{ $ .RepoLink }} /wiki/ {{ .SubURL }} "> {{ .Name }} </div>
2015-12-08 04:00:52 +05:30
{{ end }}
</div>
</div>
</div>
</div>
</div>
2020-07-29 22:00:37 +05:30
<div class="right fitted item">
2015-12-08 04:00:52 +05:30
<div class="ui action small input" id="clone-panel">
2020-12-29 00:00:06 +05:30
{{ template "repo/clone_buttons" . }}
2015-12-08 04:00:52 +05:30
</div>
</div>
</div>
2017-02-16 04:35:02 +05:30
<div class="ui dividing header">
2017-12-31 06:17:52 +05:30
<div class="ui stackable grid">
<div class="eight wide column">
2021-11-16 23:48:25 +05:30
<a class="file-revisions-btn ui basic button" title=" {{ .i18n .Tr "repo.wiki.file_revision" }} " href=" {{ .RepoLink }} /wiki/ {{ .PageURL }} ?action=_revision" ><span> {{ .CommitCount }} </span> {{ svg "octicon-history" }} </a>
2017-12-31 06:17:52 +05:30
{{ $ 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 16:56:14 +05:30
{{ if and .CanWriteWiki ( not .Repository .IsMirror ) }}
2017-12-31 06:17:52 +05:30
<div class="ui right">
2021-11-16 23:48:25 +05:30
<a class="ui small button" href=" {{ .RepoLink }} /wiki/ {{ .PageURL }} ?action=_edit"> {{ .i18n .Tr "repo.wiki.edit_page_button" }} </a>
<a class="ui green small button" href=" {{ .RepoLink }} /wiki?action=_new"> {{ .i18n .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 }} "> {{ .i18n .Tr "repo.wiki.delete_page_button" }} </a>
2017-12-31 06:17:52 +05:30
</div>
{{ end }}
2015-12-08 04:00:52 +05:30
</div>
</div>
</div>
2017-02-14 06:43:59 +05:30
{{ 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;">
2021-05-07 14:13:41 +05:30
<div class="ui {{ if .sidebarPresent }} eleven wide column {{ end }} segment markup">
2017-02-14 06:43:59 +05:30
{{ .content | Str2html }}
</div>
{{ if .sidebarPresent }}
<div class="column" style="padding-top: 0;">
<div class="ui segment">
2021-08-18 23:44:08 +05:30
{{ if and .CanWriteWiki ( not .Repository .IsMirror ) }}
2021-11-16 23:48:25 +05:30
<a class="ui right floated muted" href=" {{ .RepoLink }} /wiki/_Sidebar?action=_edit" aria-label=" {{ .i18n .Tr "repo.wiki.edit_page_button" }} "> {{ svg "octicon-pencil" }} </a>
2021-08-18 23:44:08 +05:30
{{ end }}
2017-02-14 06:43:59 +05:30
{{ .sidebarContent | Str2html }}
</div>
</div>
{{ end }}
</div>
{{ if .footerPresent }}
2017-11-28 15:13:51 +05:30
<div class="ui segment">
2021-08-18 23:44:08 +05:30
{{ if and .CanWriteWiki ( not .Repository .IsMirror ) }}
2021-11-16 23:48:25 +05:30
<a class="ui right floated muted" href=" {{ .RepoLink }} /wiki/_Footer?action=_edit" aria-label=" {{ .i18n .Tr "repo.wiki.edit_page_button" }} "> {{ svg "octicon-pencil" }} </a>
2021-08-18 23:44:08 +05:30
{{ end }}
2017-02-14 06:43:59 +05:30
{{ .footerContent | Str2html }}
2015-11-27 10:54:24 +05:30
</div>
2017-02-14 06:43:59 +05:30
{{ end }}
2015-11-27 10:54:24 +05:30
</div>
</div>
2016-03-04 03:36:50 +05:30
<div class="ui small basic delete modal">
<div class="ui icon header">
2021-03-22 09:34:19 +05:30
{{ svg "octicon-trash" }}
2016-03-04 03:36:50 +05:30
{{ .i18n .Tr "repo.wiki.delete_page_button" }}
</div>
<div class="content">
2018-02-19 01:36:37 +05:30
<p> {{ .i18n .Tr "repo.wiki.delete_page_notice_1" ( $ title | Escape ) | Safe }} </p>
2016-03-04 03:36:50 +05:30
</div>
{{ template "base/delete_modal_actions" . }}
</div>
2015-12-08 04:00:52 +05:30
{{ template "base/footer" . }}