page.html 258 B

1234567891011121314
  1. ---
  2. layout: default
  3. ---
  4. <div class="content-wrapper px-4 py-2">
  5. {% if page.title and page.title != blank %}
  6. <div class="content-header">
  7. <h1>{{ page.title }}</h1>
  8. </div>
  9. {% endif %}
  10. <div class="content px-2">
  11. {{ content }}
  12. </div>
  13. </div>