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

github.com/leonhe/hugo_eiio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuanfei He <lhe868@gmail.com>2020-04-25 17:33:56 +0300
committerYuanfei He <lhe868@gmail.com>2020-07-10 18:13:17 +0300
commit7100024fad38a934981743ff06fce1f2357e65e3 (patch)
tree0a6a86691556eef2a83da07ab44cfad2266c0c9c
parent5e1a6aab5589f603e849d927f14021bcfc090bb6 (diff)
:art: clean list link style
-rw-r--r--layouts/_default/list.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 917f582..12e03a9 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -8,8 +8,7 @@
<h3>{{ .Key }}</h3>
<ul>
{{ range .Pages }}
- <li>{{.Date.Format "01/02" }}&nbsp;<a itemListElement itemtype="http://schema.org/ListItem" href="{{.Permalink}}">
- <span itemprop="name">{{ .Title }}</span></a>
+ <li>{{.Date.Format "01/02" }}&nbsp;<a href="{{.Permalink}}">{{ .Title }}</a>
<meta itemprop="datePublished" content="{{.Date.Format "Jan 02, 2006"}}" />
<meta itemprop="url" content="{{.Permalink}}"/>
</li>