change article to post

This commit is contained in:
Bud Parr 2017-04-14 22:23:18 -04:00
parent 4ced75d066
commit 9e5401d0fa
No known key found for this signature in database
GPG key ID: ACA375160539D2B3
5 changed files with 10 additions and 9 deletions

View file

@ -2,17 +2,17 @@
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray"> <main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
{{ .Content }} {{ .Content }}
</main> </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">
<div class="pa3 pa4-ns w-100 w-70-ns center"> <h1 class="flex-none">
<h1 class="flex-none"> Recent Articles
Recent Articles </h1>
</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"> <section class="w-100 mw8">
{{ range (first 3 $section) }} {{ range (first 3 $section) }}
<div class="relative w-100 mb4"> <div class="relative w-100 mb4">
{{ .Render "summary-with-image" }} {{ .Render "summary-with-image" }}
</div> </div>
@ -20,7 +20,7 @@
</section> </section>
<section class="w-100"> <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 */}} {{/* Nest the requirements, "after" then "first" on the outside */}}
{{ range (first 4 (after 1 $section)) }} {{ range (first 4 (after 1 $section)) }}
<h2 class="f5 fw4 mb4 dib mr3"> <h2 class="f5 fw4 mb4 dib mr3">
@ -33,4 +33,5 @@
</section> </section>
</div> </div>
{{ end }}
{{ end }} {{ end }}