summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--exampleSite/config.toml4
-rw-r--r--layouts/partials/links.html2
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 @@ This is what generates one link list:
[[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 @@ copyright = "©2021 Your Name"
[[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>