独学者Fossa

独学していることなど

Hugo Section

Hugo
Hugo

Info
Sectionについて、復習します。

Section

Hugoのドキュメントのままだけど、引用させていただきます。

content
└── blog        <-- Section, because first-level dir under content/
    ├── funny-cats
    │   ├── mypost.md
    │   └── kittens         <-- Section, because contains _index.md
    │       └── _index.md
    └── tech                <-- Section, because contains _index.md
        └── _index.md

上記の例だと、てっきり、blogだけが、Sectionになると勘違いしていました。

Pagination

blogSection内だけで、次の記事に、ページ送りする場合。*1

{{ with .Prev }}
  {{ if eq .Section "blog" }}
  <li class="uk-margin-auto-left">
    <a href="{{ .RelPermalink }}">
      次の記事へ<span class="uk-margin-small-left" uk-pagination-next></span>
    </a>
  </li>
  {{ end }}
{{ end }}

*1:UIkit3使用