page.html 964 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends 'base/layout.html' %}
  2. {% block html_additional_headers %}
  3. <!-- OGP -->
  4. <meta property="og:site_name" content="{{ appService.getAppTitle() | preventXss }}" />
  5. <meta property="og:title" content="{{ page.path | preventXss }}" />
  6. <meta property="og:url" content="{{ appService.getSiteUrl() | preventXss }}/{{ page.id }}" />
  7. <meta property="og:type" content="article" />
  8. <meta property="og:image" content="{{ appService.getSiteUrl() | preventXss }}/ogp/{{ page.id }}" />
  9. {% endblock %}
  10. {% block content_main_before %}
  11. {% endblock %}
  12. {% block content_main %}
  13. <div class="grw-container-convertible">
  14. {% include '../widget/page_content.html' %}
  15. </div>
  16. {% endblock %}
  17. {% block content_footer %}
  18. {% include 'widget/comments.html' %}
  19. <div id="page-content-footer"></div>
  20. {% endblock %}
  21. {% block body_end %}
  22. <div id="presentation-layer" class="fullscreen-layer">
  23. <div id="presentation-container"></div>
  24. </div>
  25. {% endblock %}