Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kritoke/darksimplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html22
1 files changed, 12 insertions, 10 deletions
diff --git a/layouts/index.html b/layouts/index.html
index f4cc0b6..7b5f6cd 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -2,13 +2,15 @@
{{ partial "header.html" . }}
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") 5 }}
{{ range $paginator.Pages }}
-<div class="empty">&nbsp;</div>
- <div class="post-title">
- <a class="post-title-link" href="{{ .Permalink }}">{{ .Title }}</a>
- </div>{{ if isset .Params "tags" }}
- <div class="tags">tags:</br>
- {{ range .Params.tags }}<a class="tag-link" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }} </a>{{ end }}</div>
- <div class="content-tags"><p>{{.Summary}}</p></div>{{ else }}
- <div class="content-full"><p>{{.Summary}}</p></div> {{ end }}{{ end }}
- {{ partial "pagination.html" . }}
- {{ partial "footer.html" . }}
+ <article itemscope itemtype="http://schema.org/Blog">
+ <div class="post-title">
+ <a class="post-title-link" href="{{ .Permalink }}" itemprop="name">{{ .Title }}</a>
+ </div>{{ if isset .Params "tags" }}
+ <div class="tags">tags:</br>
+ <span itemprop="keywords">{{ range .Params.tags }}<a class="tag-link" href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" rel="tag">{{ . }} </a>{{ end }}</span></div>
+ <div class="content-tags"><p>{{.Summary}}</p></div>{{ else }}
+ <div class="content-full"><p>{{.Summary}}</p></div> {{ end }}
+ </article>
+ {{ end }}
+{{ partial "pagination.html" . }}
+{{ partial "footer.html" . }}