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

github.com/urjaacharya/redgood.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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 696613d..fc47b1d 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,13 +1,13 @@
{{ define "main" }}
{{ range ((where .Site.Pages "Params.pinned" true).ByDate.Reverse) | first 1 }}
<h3>
- <a href="{{ .Permalink }}" aria-label="site title">{{ .Title }}</a>
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
</h3>
<div class="pinned-post home-page-card">
<p>{{ .Summary | plainify | truncate 250 }}</p>
<div class="home-page-card-links">
- <a href="{{ .Permalink }}" aria-label="click to read the pinned post">
- Read More
+ <a href="{{ .Permalink }}">
+ Read Pinned Post
</a>
</div>
<div class="home-page-card-links">
@@ -22,7 +22,7 @@
{{ partial "listPage" . }}
{{ end }}
<div class="home-page-card-links">
- <a href="{{ `archive` | relURL }}" aria-label="link to all posts"
+ <a href="{{ `archive` | relURL }}"
>All Posts</a
>
</div>