Home.pug 551 B

12345678910111213
  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(v-if="document" class="max-w-4xl mx-auto")
  8. div(class="prose prose-lg mt-6 animate-fade-in-up" v-html="marked.parse(document.translations[_.appState.currentLanguage]?.content || document.translations.en?.content || '')")
  9. div(class="mt-12")
  10. image-gallery(:images="document.translations[_.appState.currentLanguage]?.gallery || document.translations.en?.gallery || []")