mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Bud Parr
15.23.2017 9e5401d0fac2215f74ee8a4c5d2533fbb6d84943
change article to post
1 files modified
4 files renamed
11 ■■■■ changed files
layouts/index.html 11 ●●●● patch | view | raw | blame | history
layouts/post/single.html patch | view | raw | blame | history
layouts/post/summary-with-image.html patch | view | raw | blame | history
layouts/post/summary.html patch | view | raw | blame | history
layouts/section/post.html patch | view | raw | blame | history
layouts/index.html
@@ -2,15 +2,15 @@
  <main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
    {{ .Content }}
  </main>
  {{/* Create a variable to use the same section twice. Note that we've included the date here. */}}
  {{ $section := where .Data.Pages.ByDate.Reverse "Section" "post" }}
  {{ if $section }}
  <div class="pa3 pa4-ns w-100 w-70-ns center">
    <h1 class="flex-none">
      Recent Articles
    </h1>
      {{/* Create a variable to use the same section twice. Note that we've included the date here. */}}
    {{ $section := where .Data.Pages.ByDate.Reverse "Section" "article" }}
      <section class="w-100 mw8">
        {{ range (first 3 $section)   }}
          <div class="relative w-100 mb4">
@@ -20,7 +20,7 @@
      </section>
      <section class="w-100">
        <h1 class="f3">More posts</h1>
        <h1 class="f3">More Posts</h1>
        {{/* Nest the requirements, "after" then "first" on the outside */}}
        {{ range (first 4 (after 1 $section))  }}
          <h2 class="f5 fw4 mb4 dib mr3">
@@ -34,3 +34,4 @@
    </div>
{{ end }}
{{ end }}
layouts/post/single.html
layouts/post/summary-with-image.html
layouts/post/summary.html
layouts/section/post.html