2015-11-26 04:10:25 +03:00
{{ template "base/head" . }}
2023-02-02 01:56:10 +03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content repository wiki new">
2015-12-08 01:30:52 +03:00
{{ template "repo/header" . }}
<div class="ui container">
{{ template "base/alert" . }}
2024-03-22 16:45:10 +03:00
<div class="ui header flex-text-block tw-justify-between">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.wiki.new_page" }}
2015-12-08 01:30:52 +03:00
{{ if .PageIsWikiEdit }}
2023-09-25 11:56:50 +03:00
<a class="ui tiny primary button" href=" {{ .RepoLink }} /wiki?action=_new"> {{ ctx .Locale .Tr "repo.wiki.new_page_button" }} </a>
2015-12-08 01:30:52 +03:00
{{ end }}
</div>
2024-03-20 09:58:10 +03:00
<form class="ui form" action="?action= {{ if .PageIsWikiEdit }} _edit {{ else }} _new {{ end }} " method="post">
2015-12-08 01:30:52 +03:00
{{ .CsrfTokenHtml }}
<div class="field {{ if .Err_Title }} error {{ end }} ">
2023-09-25 15:42:40 +03:00
<input name="title" value=" {{ .title }} " aria-label=" {{ ctx .Locale .Tr "repo.wiki.page_title" }} " placeholder=" {{ ctx .Locale .Tr "repo.wiki.page_title" }} " autofocus required>
2015-12-08 01:30:52 +03:00
</div>
2021-12-03 10:28:54 +03:00
<div class="help">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "repo.wiki.page_name_desc" }}
2021-12-03 10:28:54 +03:00
</div>
2023-04-03 13:06:57 +03:00
{{ $ content : = .content }}
{{ if not .PageIsWikiEdit }}
2023-09-25 11:56:50 +03:00
{{ $ content = ctx .Locale .Tr "repo.wiki.welcome" }}
2023-04-03 13:06:57 +03:00
{{ end }}
{{ template "shared/combomarkdowneditor" ( dict
"MarkdownPreviewUrl" (print .Repository.Link "/markup")
"MarkdownPreviewContext" .RepoLink
"TextareaName" "content"
2023-09-25 11:56:50 +03:00
"TextareaPlaceholder" (ctx.Locale.Tr "repo.wiki.page_content")
"TextareaAriaLabel" (ctx.Locale.Tr "repo.wiki.page_content")
2023-04-09 10:51:32 +03:00
"TextareaContent" $content
2023-04-03 13:06:57 +03:00
)}}
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 19:42:49 +03:00
<div class="field tw-mt-4">
2023-09-25 15:42:40 +03:00
<input name="message" aria-label=" {{ ctx .Locale .Tr "repo.wiki.default_commit_message" }} " placeholder=" {{ ctx .Locale .Tr "repo.wiki.default_commit_message" }} ">
2015-12-08 01:30:52 +03:00
</div>
2023-07-25 20:53:16 +03:00
<div class="divider"></div>
2015-12-08 01:30:52 +03:00
<div class="text right">
2024-03-06 09:26:32 +03:00
<a class="ui basic cancel button" href=" {{ .Link }} "> {{ ctx .Locale .Tr "cancel" }} </a>
<button class="ui primary button"> {{ ctx .Locale .Tr "repo.wiki.save_page" }} </button>
2015-12-08 01:30:52 +03:00
</div>
</form>
2015-11-26 04:10:25 +03:00
</div>
</div>
2015-12-08 01:30:52 +03:00
{{ template "base/footer" . }}