| 1234567891011121314151617181920212223242526272829303132333435 |
- {% extends 'base/layout.html' %}
- {% block html_additional_headers %}
- {% parent %}
- <!-- OGP -->
- <meta property="og:site_name" content="{{ appService.getAppTitle() | preventXss }}" />
- <meta property="og:title" content="{{ page.path | preventXss }}" />
- <meta property="og:url" content="{{ appService.getSiteUrl() | preventXss }}/{{ page.id }}" />
- <meta property="og:type" content="article" />
- <meta property="og:image" content="{{ appService.getSiteUrl() | preventXss }}/ogp/{{ page.id }}" />
- {% endblock %}
- {% block content_main_before %}
- {% endblock %}
- {% block content_main %}
- <div class="grw-container-convertible">
- {% include '../widget/page_content.html' %}
- </div>
- {% endblock %}
- {% block content_footer %}
- {% include 'widget/comments.html' %}
- <div id="page-content-footer"></div>
- {% endblock %}
- {% block body_end %}
- <div id="presentation-layer" class="fullscreen-layer">
- <div id="presentation-container"></div>
- </div>
- {% endblock %}
|