1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {% extends '_layout.swig' %}
- {% import '_macro/sidebar.swig' as sidebar_template with context %}
- {% block title %}
- {%- set page_title_suffix = ' | ' + title %}
- {%- if page.type === 'categories' and not page.title %}
- {{- __('title.category') + page_title_suffix }}
- {%- elif page.type === 'tags' and not page.title %}
- {{- __('title.tag') + page_title_suffix }}
- {%- elif page.type === 'schedule' and not page.title %}
- {{- __('title.schedule') + page_title_suffix }}
- {%- else %}
- {{- page.title + page_title_suffix }}
- {%- endif %}
- {% endblock %}
- {% block class %}page posts-expand{% endblock %}
- {% block content %}
- {##################}
- {### PAGE BLOCK ###}
- {##################}
- <div class="post-block" lang="{{ page.lang or config.language }}">
- {% include '_partials/page/page-header.swig' %}
- {#################}
- {### PAGE BODY ###}
- {#################}
- <div class="post-body{%- if page.direction and page.direction.toLowerCase() === 'rtl' %} rtl{%- endif %}">
- {%- if page.type === 'tags' %}
- <div class="tag-cloud">
- <div class="tag-cloud-title">
- {{ _p('counter.tag_cloud', site.tags.length) }}
- </div>
- <div class="tag-cloud-tags">
- {{ tagcloud({
- min_font : theme.tagcloud.min,
- max_font : theme.tagcloud.max,
- amount : theme.tagcloud.amount,
- color : true,
- start_color: theme.tagcloud.start,
- end_color : theme.tagcloud.end})
- }}
- </div>
- </div>
- {% elif page.type === 'categories' %}
- <div class="category-all-page">
- <div class="category-all-title">
- {{ _p('counter.categories', site.categories.length) }}
- </div>
- <div class="category-all">
- {{ list_categories() }}
- </div>
- </div>
- {% elif page.type === 'schedule' %}
- <div class="event-list">
- </div>
- {% include '_scripts/pages/schedule.swig' %}
- {% else %}
- {{ page.content }}
- {%- endif %}
- </div>
- {#####################}
- {### END PAGE BODY ###}
- {#####################}
- </div>
- {% include '_partials/page/breadcrumb.swig' %}
- {######################}
- {### END PAGE BLOCK ###}
- {######################}
- {% endblock %}
- {% block sidebar %}
- {{ sidebar_template.render(true) }}
- {% endblock %}
|