Home.pug 702 B

1234567891011121314
  1. extends ../layout.pug
  2. include ../../pug/base.pug
  3. include ../../pug/bem.pug
  4. block top-content
  5. hero-section(:document="document")
  6. block content
  7. div(class="max-w-4xl mx-auto px-4" v-if="document")
  8. h1(class="text-3xl font-bold text-contrast-high animate-fade-in-up") {{ document.translations[_.appState.currentLanguage]?.title || document.translations.en.title }}
  9. div(class="prose mt-6 animate-fade-in-up" v-html="_.parse(document.translations[_.appState.currentLanguage]?.content || document.translations.en.content)")
  10. div(class="mt-12")
  11. image-gallery(:images="document.translations[_.appState.currentLanguage]?.gallery || document.translations.en.gallery")