diff options
author | Alan Pearce | 2014-06-07 10:34:22 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 10:34:22 +0100 |
commit | 8e077a0573cd45be7438ff617b59d7d3e72924ea (patch) | |
tree | a0d18dbd8c4fe3780801dd7dec2d8c644f1d41e1 /layouts/_default/list.html | |
parent | 15e3433c673d692232b0140da8160324ef7c2fa2 (diff) | |
download | hyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.tar.lz hyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.tar.zst hyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.zip |
Switch to semantic tags where appropriate
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r-- | layouts/_default/list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 38c880c..bc97cc9 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,12 +1,12 @@ {{ template "theme/partials/head.html" . }} <body class="theme-base-0b layout-reverse"> {{ template "theme/partials/sidebar.html" . }} - <div class="content container"> + <main class="content container" role="main"> <ul class="posts"> {{ range .Data.Pages }} - <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></li> + <li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></li> {{ end }} </ul> - </div> + </main> </body> </html> |