Make opening tag link in a new tab optional
Signed-off-by: Marek Pikuła <[email protected]>
This commit is contained in:
@@ -67,7 +67,7 @@ params:
|
|||||||
# This requires your images to be uploaded + hosted on Cloudinary
|
# This requires your images to be uploaded + hosted on Cloudinary
|
||||||
# Uncomment and change YOUR_CLOUD_NAME to the Cloud Name in your Cloudinary console
|
# Uncomment and change YOUR_CLOUD_NAME to the Cloud Name in your Cloudinary console
|
||||||
# cloudinary_cloud_name: "YOUR_CLOUD_NAME"
|
# cloudinary_cloud_name: "YOUR_CLOUD_NAME"
|
||||||
|
|
||||||
# Whether to add mathjax support on all pages. Alternatively, you can opt-in per page by adding `mathjax: true` in the frontmatter.
|
# Whether to add mathjax support on all pages. Alternatively, you can opt-in per page by adding `mathjax: true` in the frontmatter.
|
||||||
mathjax: false
|
mathjax: false
|
||||||
|
|
||||||
@@ -153,7 +153,7 @@ params:
|
|||||||
title: "About Me"
|
title: "About Me"
|
||||||
image: "/images/me.png"
|
image: "/images/me.png"
|
||||||
content: |-
|
content: |-
|
||||||
I am a software developer with a passion for web development. I have a background in computer science and mathematics, and I have a strong interest in the intersection of technology and art. I am currently working as a software developer at [example org.](https://example.com) in San Francisco, CA.
|
I am a software developer with a passion for web development. I have a background in computer science and mathematics, and I have a strong interest in the intersection of technology and art. I am currently working as a software developer at [example org.](https://example.com) in San Francisco, CA.
|
||||||
|
|
||||||
I am currently working on a project that will be used to help people find the best way to get around the city.
|
I am currently working on a project that will be used to help people find the best way to get around the city.
|
||||||
skills:
|
skills:
|
||||||
@@ -246,7 +246,7 @@ params:
|
|||||||
GPA: "3.8 out of 5.0"
|
GPA: "3.8 out of 5.0"
|
||||||
content: |-
|
content: |-
|
||||||
Extracurricular Activities
|
Extracurricular Activities
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||||
- Tempora esse, eaque delectus nulla quo doloribus itaque expedita alias natus optio totam maxime nihil excepturi velit a animi laborum hic similique.
|
- Tempora esse, eaque delectus nulla quo doloribus itaque expedita alias natus optio totam maxime nihil excepturi velit a animi laborum hic similique.
|
||||||
- title: "Bachelor of Science in Computer Science"
|
- title: "Bachelor of Science in Computer Science"
|
||||||
school:
|
school:
|
||||||
@@ -260,7 +260,7 @@ params:
|
|||||||
- Face mask detection using a single convolutional neural network.
|
- Face mask detection using a single convolutional neural network.
|
||||||
|
|
||||||
Extracurricular Activities
|
Extracurricular Activities
|
||||||
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
- Lorem ipsum dolor sit amet consectetur adipisicing elit.
|
||||||
- Tempora esse, eaque delectus nulla quo doloribus itaque expedita alias natus optio totam maxime nihil excepturi velit a animi laborum hic similique.
|
- Tempora esse, eaque delectus nulla quo doloribus itaque expedita alias natus optio totam maxime nihil excepturi velit a animi laborum hic similique.
|
||||||
featuredLink:
|
featuredLink:
|
||||||
enable: true
|
enable: true
|
||||||
@@ -385,6 +385,8 @@ params:
|
|||||||
content: "min read"
|
content: "min read"
|
||||||
scrollprogress:
|
scrollprogress:
|
||||||
enable: true
|
enable: true
|
||||||
|
tags:
|
||||||
|
openInNewTab: true
|
||||||
|
|
||||||
# For translations
|
# For translations
|
||||||
terms:
|
terms:
|
||||||
|
|||||||
@@ -58,7 +58,9 @@
|
|||||||
<h5>{{ .Site.Params.terms.tags | default "Tags" }}</h5>
|
<h5>{{ .Site.Params.terms.tags | default "Tags" }}</h5>
|
||||||
<ul class="tags-ul list-unstyled list-inline">
|
<ul class="tags-ul list-unstyled list-inline">
|
||||||
{{range .Params.tags}}
|
{{range .Params.tags}}
|
||||||
<li class="list-inline-item"><a href="{{`tags` | absURL}}/{{.| urlize}}" target="_blank">{{.}}</a></li>
|
<li class="list-inline-item"><a href="{{`tags` | absURL}}/{{.| urlize}}"
|
||||||
|
{{ if site.Params.singlePages.tags.openInNewTab | default true }}target="_blank"{{ end }}
|
||||||
|
>{{.}}</a></li>
|
||||||
{{end}}
|
{{end}}
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
|
|||||||
Reference in New Issue
Block a user