default.html 387 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="{{ page.lang | default: site.lang | default: "en" }}">
  3. {% include head.html %}
  4. <body>
  5. {% include banner.html %}
  6. {% include navigation.html %}
  7. {% include twitch.html %}
  8. <main>
  9. {{ content }}
  10. </main>
  11. {% include marketing.html %}
  12. {% include mailchimp.html %}
  13. {% include footer.html %}
  14. {% include scripts.html %}
  15. </body>
  16. </html>