Remove links from page titles
They are a redundant page reload button and they make tab navigation more annoying.
This commit is contained in:
parent
8de210707f
commit
c66d132e7c
@ -191,9 +191,6 @@ h2 a {
|
|||||||
h1, h2, h3, h4, h5, h6, ::placeholder {
|
h1, h2, h3, h4, h5, h6, ::placeholder {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.container > .pageHeader > h2.pageTitle.title > a {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
strong, b {
|
strong, b {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="pageHeader">
|
<div class="pageHeader">
|
||||||
<h2 class="title pageTitle"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title pageTitle">{{ .Title }}</h2>
|
||||||
<p class="has-text-grey">{{- T "published" -}}: <time datetime="{{ .PublishDate.Format "2006-01-02T15:04:05.000-0700" }}">{{ .PublishDate.Format "02.01.2006 15:04" }}</time></p>
|
<p class="has-text-grey">{{- T "published" -}}: <time datetime="{{ .PublishDate.Format "2006-01-02T15:04:05.000-0700" }}">{{ .PublishDate.Format "02.01.2006 15:04" }}</time></p>
|
||||||
<p class="has-text-grey">
|
<p class="has-text-grey">
|
||||||
{{- T "author" -}}: {{ range .Params.authors }}{{ with $.Site.GetPage (printf "authors/%s" .) }}<a class="separateWithCommas" href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}{{ end }}
|
{{- T "author" -}}: {{ range .Params.authors }}{{ with $.Site.GetPage (printf "authors/%s" .) }}<a class="separateWithCommas" href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}{{ end }}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
<div class="pageHeader">
|
<div class="pageHeader">
|
||||||
<h2 class="title pageTitle"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title pageTitle">{{ .Title }}</h2>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="pageHeader">
|
<div class="pageHeader">
|
||||||
<h2 class="title pageTitle"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title pageTitle">{{ .Title }}</h2>
|
||||||
<p class="has-text-grey">
|
<p class="has-text-grey">
|
||||||
{{- T "leader" -}}: {{ range .Params.leader }}{{ with $.Site.GetPage (printf "authors/%s" .) }}<a href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}{{ end }}
|
{{- T "leader" -}}: {{ range .Params.leader }}{{ with $.Site.GetPage (printf "authors/%s" .) }}<a href="{{ .Permalink }}">{{ .Title }}</a>{{ end }}{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="pageHeader">
|
<div class="pageHeader">
|
||||||
<h2 class="title pageTitle"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
<h2 class="title pageTitle">{{ .Title }}</h2>
|
||||||
<p class="has-text-grey">{{- T "published" -}}: <time datetime="{{ .PublishDate.Format "2006-01-02T15:04:05.000-0700" }}">{{ .PublishDate.Format "02.01.2006 15:04" }}</time></p>
|
<p class="has-text-grey">{{- T "published" -}}: <time datetime="{{ .PublishDate.Format "2006-01-02T15:04:05.000-0700" }}">{{ .PublishDate.Format "02.01.2006 15:04" }}</time></p>
|
||||||
<p class="">{{- T "talks-when" -}}: <time datetime="{{ dateFormat "2006-01-02T15:04:05.000-0700" .Params.when }}">{{ dateFormat "02.01.2006 15:04" .Params.when }}</time> <a rel="alternate" href="{{ (.OutputFormats.Get "Calendar").Permalink | safeURL }}"><span class="icon"><i class="fas fa-calendar-alt"></i></span></a></p>
|
<p class="">{{- T "talks-when" -}}: <time datetime="{{ dateFormat "2006-01-02T15:04:05.000-0700" .Params.when }}">{{ dateFormat "02.01.2006 15:04" .Params.when }}</time> <a rel="alternate" href="{{ (.OutputFormats.Get "Calendar").Permalink | safeURL }}"><span class="icon"><i class="fas fa-calendar-alt"></i></span></a></p>
|
||||||
<p class="">
|
<p class="">
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="pageHeader">
|
<div class="pageHeader">
|
||||||
<h2 class="title pageTitle"><a href="{{ .Permalink }}">{{ T "posts_with_tag" }} "{{ .Title }}":</a></h2>
|
<h2 class="title pageTitle">{{ T "posts_with_tag" }} "{{ .Title }}":</h2>
|
||||||
</div>
|
</div>
|
||||||
{{ partial "blogList.html" . }}
|
{{ partial "blogList.html" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user