diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/list.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index a1f9847..2806591 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,11 +1,11 @@ {{ template "theme/partials/head.html" . }} - <body class="theme-base-0b layout-reverse"> + <body class="theme-base-0b layout-reverse" itemscope itemtype="http://schema.org/Blog"> <main class="content container" role="main"> <ul class="posts"> {{ range .Data.Pages }} - <li> - <a href="{{ .RelPermalink }}">{{ .Title }}</a> - <time datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> + <li itemscope itemtype="http://schema.org/BlogPosting"> + <a class="post-title" itemprop="url" href="{{ .RelPermalink }}"><span itemprop="name">{{ .Title }}<span></a> + <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time> <p class="summary">{{ .Summary }}</p> </li> {{ end }} |