custom resume button name

This commit is contained in:
gurusabarish
2021-03-31 19:53:29 +05:30
parent 4aa090c456
commit 076e47e612
3 changed files with 13 additions and 5 deletions
+5 -2
View File
@@ -1,7 +1,6 @@
baseURL: "https://example.com" baseURL: "https://example.com"
languageCode: "en-us" languageCode: "en-us"
title: "Hugo-profile" title: "Hugo-profile"
theme: "hugo-profile"
googleanalytics: UA-167646412-8 googleanalytics: UA-167646412-8
disqusShortname: gurusabarish disqusShortname: gurusabarish
@@ -34,8 +33,10 @@ params:
profile_image: "/images/gurusabarish.webp" profile_image: "/images/gurusabarish.webp"
descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer. I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly." descripe_l1_person: "Hi, I'm Gurusabarish, a passionate web developer and ML engineer. I tend to make use of modern web technologies to build websites that looks great, feels fantastic, and functions correctly."
descripe_l2_person: "" descripe_l2_person: ""
useresume: true useresume: true
resume: "" customname: ""
resumelink: ""
# Things I do # Things I do
usedothings: true usedothings: true
@@ -54,3 +55,5 @@ params:
#Description for seo. If you want to show description in your listing or single page, let's make it true #Description for seo. If you want to show description in your listing or single page, let's make it true
showdescription: false showdescription: false
tweet: true
recentposts: true
+1 -1
View File
@@ -122,7 +122,7 @@
<div class="container bg-transparent py-4"> <div class="container bg-transparent py-4">
<div class="row justify-content-center"> <div class="row justify-content-center">
<div class="col-md-4 text-center order-2 order-lg-1 order-md-1"> <div class="col-md-4 text-center order-2 order-lg-1 order-md-1">
<div> <div class="pb-2">
<a href="{{ .Site.BaseURL }}"> <a href="{{ .Site.BaseURL }}">
<img alt="Footer logo" src="{{ .Site.Params.favicon | default " /images/favicon.png"}}" <img alt="Footer logo" src="{{ .Site.Params.favicon | default " /images/favicon.png"}}"
height="40px" width="40px"> height="40px" width="40px">
+7 -2
View File
@@ -29,9 +29,14 @@
</div> </div>
<div class="social px-3 text-center pb-4"> <div class="social px-3 text-center pb-4">
{{ if .Site.Params.useresume }} {{ if .Site.Params.useresume }}
<a href="{{ .Site.Params.resume | default " #" }}" class="btn btn-outline-danger" role="button" <a href="{{ .Site.Params.resumelink | default " #" }}" class="btn btn-outline-danger"
aria-pressed="true"> role="button" aria-pressed="true">
{{ if .Site.Params.customname }}
{{ .Site.Params.customname }}
{{ else }}
Resume Resume
{{ end }}
</a> </a>
{{ end }} {{ end }}
</div> </div>