Я создал блог, используя несколько шаблонов в ExpressionEngine 2, но я борюсь с тем, как реализовать разбиение на страницы в представлении main / list.Я могу, очевидно, уменьшить ограничение на вход и применить атрибут paginate к тегу канала, но он не работает должным образом.Он просто выводит ссылки на страницы, но каждая ссылка просто идет на отдельную страницу с только самой новой записью.
Мне кажется, что я упускаю что-то очевидное, но я действительно не уверен.Я был бы признателен, если бы у кого-то были какие-либо предложения / предложения относительно того, как правильно реализовать вещи.
{exp:channel:entries channel="notes_entry|notes_link|notes_photo|notes_quote|notes_video" limit="20" orderby="date"}
{if channel_short_name == 'notes_link'}
<div class="link">
<h2><a href="{notes-link-URL}">{title}</a></h2>
{notes-link-description}
<span class="date">Posted on {entry_date format="%F %j, %Y"} | <a href="{title_permalink="notes"}">Permalink</a></span>
</div>
{if:elseif channel_short_name == 'notes_quote'}
<div class="quote">
<h2><a href="{notes-quote-URL}">{title}</a></h2>
<blockquote>{notes-quote}</blockquote>
<span class="source"><a href="{notes-quote-URL}">{notes-quote-source}</a></span>
{notes-quote-description}
<span class="date">Posted on {entry_date format="%F %j, %Y"} | <a href="{title_permalink="notes"}">Permalink</a></span>
</div>
{if:elseif channel_short_name == 'notes_entry'}
<div class="entry">
<h2><a href="{title_permalink="notes"}">{title}</a></h2>
<span class="author">Written by {author}</span>
<p>{notes-entry-summary} <span><a href="{title_permalink="notes"}">Read More…</a></span></p>
<span class="date">Posted on {entry_date format="%F %j, %Y"} | <a href="{title_permalink="notes"}">Permalink</a></span>
</div>
{if:elseif channel_short_name == 'notes_photo'}
<div class="photo">
<h2><a href="{title_permalink="notes"}">{title}</a></h2>
<img src="{notes-photo-upload}" alt="" />
{notes-photo-description}
<span class="date">Posted on {entry_date format="%F %j, %Y"} | <a href="{title_permalink="notes"}">Permalink</a></span>
</div>
{if:elseif channel_short_name == 'notes_video'}
<div class="video">
<h2><a href="{notes-video-url}">{title}</a></h2>
<div class="video-container">
<!-- start of embed code -->
{notes-video-embed}
<!-- end of embed code -->
</div>
{notes-video-description}
<span class="date">Posted on {entry_date format="%F %j, %Y"} | <a href="{title_permalink="notes"}">Permalink</a></span>
</div>
{/if}
{/exp:channel:entries}