user_page.html 399 B

12345678910111213141516171819
  1. {% extends 'page.html' %}
  2. {% block main_css_class %}user-page{% endblock %}
  3. {% block content_header %}
  4. {% if pageUser %}
  5. {% include '../widget/user_page_header.html' %}
  6. {% else %}
  7. {% parent %}
  8. {% endif %}
  9. {% endblock %}
  10. {% block content_main_before %}
  11. <div class="m-b-30 user-page-content-container">
  12. {% include '../widget/user_page_content.html' %}
  13. </div>
  14. {% endblock %}