Compare commits

..

No commits in common. "d7f52b0d648fe0f4537ee8ac4c4fbdaaf2aaa13c" and "911f99937920f56306db5faa171534e8f0bb84a0" have entirely different histories.

6 changed files with 17 additions and 33 deletions

View File

@ -10,7 +10,6 @@ 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 {{ if eq .Kind "page" }}class="h-entry"{{ else if in (slice "section" "taxonomy" "taxonomyTerm" ) .Kind }}class="h-feed"{{ end }}>
<main>
<header>
{{- block "content-header" . -}}
{{- end -}}

View File

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

View File

@ -3,14 +3,10 @@
{{ .Title }} &ndash; {{ .Site.Title }}
{{ end }}
{{ define "content-header" }}
<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>
<h1>{{ .Title }}</h1>
{{ end }}
{{ define "content" }}
<article class="e-content">
<article>
{{ .Content }}
</article>
{{ end }}

View File

@ -1,13 +1,9 @@
<article class="h-entry">
<article class="post">
<header>
<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>
<h2><a href='{{ .Permalink }}'>{{ .Title }}</a> </h2>
<div class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .FuzzyWordCount }} Words </div>
</header>
<section class="p-summary">
<section>
{{ .Summary }}
</section>
{{- if .Truncated }}

View File

@ -1,19 +1,14 @@
{{ define "content" }}
<article class="homepage-content h-entry e-content">
<article class="homepage-content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
{{.Content}}
</article>
<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>
<!-- 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 }}
{{ end }}
{{ define "content-footer" }}
{{ partial "paginator.html" .Paginator }}