2
0

page.html 980 B

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