## url = "/wiki/:fullslug*/:id" layout = "wiki" title = "Wiki Article" meta_title = "{{ wiki.title }}" [section wiki] handle = "Page\Article" identifier = "id" [resources] vars[activeNavLink] = 'wiki' == {% set article = wiki %} {% if article is empty %} {% do abort(404) %} {% elseif article.fullslug and article.fullslug != this.param.fullslug %} {% do redirect(''|page({ fullslug: article.fullslug }), 301) %} {% endif %}
{% partial 'wiki/breadcrumb' article=article %}

{{ article.title }}

{{ article.summary_text }}

{% if article.banner %}
{% else %}
{% endif %}
{{ article.content|content }}
{% partial 'controls/gallery-slider' gallery=article.gallery %}
{% partial 'wiki/continue' article=article %} {% if article.external_links %}

External Links

{% endif %}