Add Go rewrite with Postgres 17 and Dokploy Docker Compose

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-27 08:21:21 +03:00
co-authored by Cursor
parent bac78dd3fc
commit 99a27f00be
67 changed files with 17864 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{{define "page_faq"}}
{{template "guest_shell_open" dict "Title" (t "faq_page_title") "Lang" (lang)}}
<div class="cyber-shell share-faq-page">
<div class="cyber-hero cyber-hero--compact">
<div class="hero-icon hero-icon--sm"><i class="fa-solid fa-circle-question"></i></div>
<h1>{{t "faq_title"}}</h1>
</div>
<div class="faq-list">
{{range .Items}}
<div class="faq-item">
<div class="faq-item__q">{{.Question}}</div>
<div class="faq-item__a">{{.Answer}}</div>
</div>
{{end}}
</div>
{{template "guest_subnav" .}}
<p class="text-center mt-3"><a class="guest-back-link" href="{{appURL "share"}}"><i class="fa-solid fa-arrow-left"></i> Назад</a></p>
</div>
{{template "guest_footer" .}}
{{template "guest_shell_close" .}}
{{end}}