page_list_nosidebar.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% extends '../../page_list.html' %}
  2. {% block layout_main %}
  3. <div id="main" class="main col-md-12 {% if page %}{{ css.grant(page) }}{% endif %} {% block main_css_class %}{% endblock %}">
  4. {% if page && page.grant != 1 %}
  5. <p class="page-grant">
  6. <i class="fa fa-lock"></i> {{ consts.pageGrants[page.grant] }} ({{ t('Browsing of this page is restricted') }})
  7. </p>
  8. {% endif %}
  9. {% if page && page.grant == 2 %}
  10. <p class="alert alert-info">
  11. {{ t('Shareable Link') }}
  12. <input type="text" class="copy-link form-control" value="{{ baseUrl }}/{{ page._id.toString() }}" readonly>
  13. </p>
  14. {% endif %}
  15. <article>
  16. {% block content_main_before %}
  17. {% endblock %}
  18. {% block content_main %}
  19. {% parent %}
  20. {% endblock content_main %}
  21. {% block content_main_after %}
  22. {% endblock %}
  23. {% block content_footer %}
  24. {% parent %}
  25. {% endblock %}
  26. </article>
  27. </div>
  28. {% endblock %} {# layout_main #}
  29. {% block layout_footer %}
  30. {% parent %}
  31. {% include '../widget/system-version.html' %}
  32. {% endblock %}