1{{ define "title" }}publish a new string{{ end }}
2
3{{ define "topbar" }}
4 {{ template "layouts/topbar" $ }}
5{{ end }}
6
7{{ define "content" }}
8 <div class="px-6 py-2 mb-4">
9 {{ if eq .Action "new" }}
10 <p class="text-xl font-bold dark:text-white">Create a new string</p>
11 <p class="">Store and share code snippets with ease.</p>
12 {{ else }}
13 <p class="text-xl font-bold dark:text-white">Edit string</p>
14 {{ end }}
15 </div>
16 {{ template "strings/fragments/form" . }}
17{{ end }}