minimal.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ---
  2. common-css:
  3. - "/assets/css/beautifuljekyll-minimal.css"
  4. common-ext-css:
  5. - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  6. sri: "sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
  7. common-ext-js:
  8. - href: "https://code.jquery.com/jquery-3.5.1.slim.min.js"
  9. sri: "sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs="
  10. - href: "https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
  11. sri: "sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
  12. - href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
  13. sri: "sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
  14. ---
  15. <!DOCTYPE html>
  16. <html lang="{{ page.language | default: site.language | default: 'en' }}">
  17. {% include head.html %}
  18. <body>
  19. <div role="main" class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %} main-content">
  20. {% if page.before-content %}
  21. <div class="before-content">
  22. {% for file in page.before-content %}
  23. {% include {{ file }} %}
  24. {% endfor %}
  25. </div>
  26. {% endif %}
  27. {{ content }}
  28. {% if page.after-content %}
  29. <div class="after-content">
  30. {% for file in page.after-content %}
  31. {% include {{ file }} %}
  32. {% endfor %}
  33. </div>
  34. {% endif %}
  35. </div>
  36. {% include footer-minimal.html %}
  37. {% include footer-scripts.html %}
  38. </body>
  39. </html>