Следующий раздел статьи не работает в craftcms Кто-нибудь знает, что пошло не так здесь? - PullRequest
0 голосов
/ 02 июля 2019

один из моих проектов craft cms, у меня есть статьи и после щелчка по статьям я могу прочитать эти статьи, и в этом правом контенте у меня есть вызов по вкладке Следующая статья, но при нажатии ничего не отвечает вот живой сайт - http://ambitmagazine.co.uk/poems/ambit-poetry-competition-2018

скриншот - https://prntscr.com/o9gkph

_entry.html

{% extends "_layout" %}

{% block content %}

{% set issue = entry.issue.first() %}
{% set nextArticle = craft.entries.section('articles').after(entry.postDate).order('postDate asc').limit(1).find() %}

<div class="article section{% if entry.largeText %} article--larger-text{% endif %}">
    <div class="article__inner section__inner">

        {% include 'articles/_partials/article-header' with { article: entry, issue: issue } only %}
        {% include "articles/_types/" ~ entry.type %}
        {% if entry.relatedAuthor|length > 0 %}
            {% include 'articles/_partials/article-footer' with { article: entry } only %}
        {% endif %}

        {% if nextArticle|length > 0 %}
            <div class="next-item">
                <a href="{{nextArticle[0].url}}" class="next-item__inner">
                    <span><strong>Next Artcile</strong></span>
                    <span>\</span>
                    <span>{{nextArticle[0].title}}</span>
                </a>
            </div>
        {% endif %}
        <div class="article__sidebar-inner"></div>
    </div>

    <div class="article__sidebar-outer"></div>
</div>
...