| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {% extends 'page.html' %}
- {% block main_css_class %}
- {% parent %}
- user-page
- {% endblock %}
- {% block content_header %}
- {% if pageUser %}
- {% include '../widget/user_page_header.html' %}
- {% else %}
- {% parent %}
- {% endif %}
- {% endblock %}
- {% block content_main %}
- <div class="row">
- <div class="col-lg-10 col-md-9">
- {#
- # ensure to insert 'user_page_content' widget to here
- #
- # Because this block has content like 'Bookmarks' or 'Recent Created' whose height changes dynamically,
- # setting of 'revision-toc' (affix) is hindered.
- #}
- <div class="m-b-30 user-page-content-container">
- {% include '../widget/user_page_content.html' %}
- </div>
- {% block content_main_before %}
- {% parent %}
- {% endblock %}
- {% include '../widget/page_content.html' %}
- {# force remove #revision-toc from #content_main of parent #}
- <script>
- $('#revision-toc').remove();
- </script>
- </div> {# /.col- #}
- {# relocate #revision-toc #}
- <div class="col-lg-2 col-md-3 revision-toc-container hidden-sm hidden-xs">
- <div id="revision-toc" class="revision-toc" data-spy="affix" data-offset-top="75">
- <div id="revision-toc-content" class="revision-toc-content"></div>
- </div>
- </div> {# /.col- #}
- </div>
- {% if 'growi' === behaviorType() || 'crowi-plus' === behaviorType() %}
- <div class="row page-list m-t-30">
- <div class="col-md-10">
- {% include '../widget/page_list_and_timeline.html' %}
- </div>
- </div>
- {% endif %}
- {% endblock %}
- {% block content_main_after %}
- {% include 'widget/comments.html' %}
- {% endblock %}
|