From f6f753813a39a1bab0ae75894e609538a6610943 Mon Sep 17 00:00:00 2001
From: Alan Braz <alanbraz@br.ibm.com>
Date: Thu, 22 Sep 2022 18:23:23 +0000
Subject: [PATCH] new_tab default to false
---
exampleSite/config.toml | 4 ++--
layouts/partials/links.html | 2 +-
README.md | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 964de64..7f20ceb 100644
--- a/README.md
+++ b/README.md
@@ -144,12 +144,12 @@
[[params.links.list1.link]]
text = "Blog"
url = "#"
- new_tab = true # Default, new tab
+ new_tab = true # new tab
[[params.links.list1.link]]
text = "Email"
url = "#"
- new_tab = false # open at same tab
+ new_tab = false # Default, open at same tab
[[params.links.list1.link]]
text = "Newsletter"
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index cbdae0b..ca61111 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -52,12 +52,12 @@
[[params.links.list1.link]]
text = "Blog"
url = "#"
- new_tab = true # Default, new tab
+ new_tab = true # new tab
[[params.links.list1.link]]
text = "Email"
url = "#"
- new_tab = false # open at same tab
+ new_tab = false # Default, open at same tab
[[params.links.list1.link]]
text = "Newsletter"
diff --git a/layouts/partials/links.html b/layouts/partials/links.html
index 390bf1e..3a8d692 100644
--- a/layouts/partials/links.html
+++ b/layouts/partials/links.html
@@ -8,7 +8,7 @@
<h3>{{ $list.heading }}</h3>
<ul>
{{ range $list.link }}
- <li><a href="{{ .url | safeURL }}" title="{{ .text }}" target={{ cond (.new_tab | default true) "_blank" "_self"}}>{{ .text }}</a></li>
+ <li><a href="{{ .url | safeURL }}" title="{{ .text }}" target={{ cond (.new_tab | default false) "_blank" "_self"}}>{{ .text }}</a></li>
{{ end }}
</ul>
</div>
--
Gitblit v1.10.0