From ce3111b0efe91e275ce070f9511b5b1b9801a46d Mon Sep 17 00:00:00 2001 From: Alexander NeonXP Kiryukhin Date: Sun, 21 Jul 2024 19:26:56 +0300 Subject: Множество улучшений MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- views/layouts.templ | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'views/layouts.templ') diff --git a/views/layouts.templ b/views/layouts.templ index 3db6f1b..f1c2deb 100644 --- a/views/layouts.templ +++ b/views/layouts.templ @@ -2,11 +2,12 @@ package views import ( "context" + "fmt" "gitrepo.ru/neonxp/gorum/contextlib" "gitrepo.ru/neonxp/gorum/models" ) -templ Layout() { +templ Layout(parent *models.Node) { @@ -14,7 +15,7 @@ templ Layout() { - + Gorum @@ -23,9 +24,23 @@ templ Layout() {
  • Gorum BBS
  • -
  • - Список тем -
  • + if parent != nil { +
  • + Список тем +
  • +
  • + switch parent.Type { + case models.PostType: + На уровень выше + case models.TopicType: + К предыдущей теме + } +
  • + } else { +
  • + Список тем +
  • + }