Compare commits

...

6 Commits

Author SHA1 Message Date
Kevin C. Coram d7f52b0d64
Use h-feed for section, taxonomy, and taxonomyTerm 2019-12-07 21:48:06 -05:00
Kevin C. Coram 779f3c20e0
Wrap homepage list in h-feed microformat 2019-12-07 14:34:57 -05:00
Kevin C. Coram 7de183f6c6
Add an example config for header for home page list section 2019-12-07 14:32:52 -05:00
Kevin C. Coram f44ae3d46d
Add a u-url link to the Permalink to the page 2019-12-07 14:07:47 -05:00
Kevin C. Coram 1a2aa49bbf
Make list content block optional
* Only generate a content block if there is content to show
* Change to use a <div> instead of <header> for the list conent
2019-12-07 14:07:29 -05:00
Kevin C. Coram dccbceb218
Add h-entry and h-feed microformats
* Add h-entry microformat markup to single page template
* Add h-feed wrapper around list of articles in list template
* Add h-entry to summary template
2019-12-07 13:51:12 -05:00
6 changed files with 33 additions and 17 deletions

View File

@ -10,6 +10,7 @@ paginate = 5
[params]
subtitle = "A theme with no CSS and only basic layouts"
homepageSectionTitle = "What's New"
mainSections = [ "posts" ]
# Configuration Parameters for IndieWeb h-card

View File

@ -29,7 +29,7 @@
{{- end }}
</nav>
</header>
<main>
<main {{ if eq .Kind "page" }}class="h-entry"{{ else if in (slice "section" "taxonomy" "taxonomyTerm" ) .Kind }}class="h-feed"{{ end }}>
<header>
{{- block "content-header" . -}}
{{- end -}}

View File

@ -3,12 +3,14 @@
{{ .Title }} &ndash; {{ .Site.Title }}
{{ end }}
{{ define "content-header" }}
<h1 id="title">{{ .Title }}</h1>
<h1 class="p-name">{{ .Title }}</h1>
{{ end }}
{{ define "content" }}
<header class="list-content">
{{ if .Content }}
<div class="list-content e-content">
{{ .Content }}
</header>
</div>
{{ end }}
{{ range $index, $page := (.Paginate (where .Pages ".Params.hidden" "!=" "true")).Pages }}
{{ if ne $index 0 }}
{{ end }}

View File

@ -3,10 +3,14 @@
{{ .Title }} &ndash; {{ .Site.Title }}
{{ end }}
{{ define "content-header" }}
<h1>{{ .Title }}</h1>
<h1 class="p-name u-url"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<p>
Published by <a class="p-author h-card" href="{{ .Site.BaseURL }}">{{ .Site.Params.Card.Author }}</a> on
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "January 2, 2006" }}</time>
</p>
{{ end }}
{{ define "content" }}
<article>
<article class="e-content">
{{ .Content }}
</article>
{{ end }}

View File

@ -1,9 +1,13 @@
<article class="post">
<article class="h-entry">
<header>
<h2><a href='{{ .Permalink }}'>{{ .Title }}</a> </h2>
<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} Words </div>
<h2 class="p-name u-url"><a href='{{ .Permalink }}'>{{ .Title }}</a> </h2>
<p>
Published by <a class="p-author h-card" href="{{ .Site.BaseURL }}">{{ .Site.Params.Card.Author }}</a> on
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "January 2, 2006" }}</time>
&ndash; {{ .FuzzyWordCount }} Words
</p>
</header>
<section>
<section class="p-summary">
{{ .Summary }}
</section>
{{- if .Truncated }}

View File

@ -1,14 +1,19 @@
{{ define "content" }}
<article class="homepage-content">
<article class="homepage-content h-entry e-content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
{{.Content}}
</article>
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "summary" }}
{{ end }}
<section class="h-feed">
{{ if .Site.Params.homepageSectionTitle }}
<h2 class="p-name u-url"><a href="{{ .Site.BaseURL }}">{{ .Site.Params.homepageSectionTitle }}</a></h2>
{{ end }}
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
{{ if ne $index 0 }}
{{ end }}
{{ .Render "summary" }}
{{ end }}
</section>
{{ end }}
{{ define "content-footer" }}
{{ partial "paginator.html" .Paginator }}