Browse Source

change article to post

tags/v1.1
Bud Parr 7 years ago
parent
commit
9e5401d0fa
No account linked to committer's email address

+ 10
- 9
layouts/index.html View File

<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">
Recent Articles
</h1>
<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"> <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>
</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">
</section> </section>


</div> </div>
{{ end }}
{{ end }} {{ end }}

layouts/article/single.html → layouts/post/single.html View File


layouts/article/summary-with-image.html → layouts/post/summary-with-image.html View File


layouts/article/summary.html → layouts/post/summary.html View File


layouts/section/article.html → layouts/section/post.html View File


Loading…
Cancel
Save