Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgurusabarish <gurusabarisha@gmail.com>2020-09-07 20:55:48 +0300
committergurusabarish <gurusabarisha@gmail.com>2020-09-07 20:55:48 +0300
commit4dd1bd54d2378a915677852ae723a33bb504727f (patch)
tree979cae33ed1e1809cce6ce94c89dcfa765d68746
parent95c28df2d79af40e4373ce096381f2493d4df4ad (diff)
about
-rw-r--r--config.toml6
-rw-r--r--layouts/partials/sections/about.html16
2 files changed, 16 insertions, 6 deletions
diff --git a/config.toml b/config.toml
index 08893be..4a9c0c4 100644
--- a/config.toml
+++ b/config.toml
@@ -22,6 +22,12 @@ title = "Hugo-blog"
thing2_des = "I train robust models for various tasks."
thing3_des = "I love to build things for web."
+ # About
+ profile_image = "/images/gurusabarish.jpg"
+ jop = "Web developer"
+ jops_about = "web developer and ML engineer"
+ resume = ""
+
# Navbar Menus
[[menu.main]]
name = "Blog"
diff --git a/layouts/partials/sections/about.html b/layouts/partials/sections/about.html
index 371142f..08ddcb0 100644
--- a/layouts/partials/sections/about.html
+++ b/layouts/partials/sections/about.html
@@ -3,10 +3,11 @@
<div class="container">
<div class="about-me text-center font-weight-bold text-secondary">About Me</div>
</div>
+
<div class="row justify-content-center ">
<div class="col-md-3 pt-5 text-center">
- <img src="/images/gurusabarish.jpg" width="200px" alt="..." class="rounded">
- <div class="about-me jop font-weight-bold text-secondary">web developper</div>
+ <img src="{{ .Site.Params.profile_image }}" width="200px" alt="{{ .Site.Params.name }}" class="rounded">
+ <div class="about-me jop font-weight-bold text-secondary">{{ .Site.Params.jop }}</div>
{{ if .Site.Params.linkedin }}
<a class="text-white" href="{{ .Site.Params.linkedin }}" target="_blank">
@@ -19,19 +20,22 @@
{{ end }}
</div>
+
<div class="col-md-7 pt-5 ">
<div class="about-content text-secondary p-3">
- Hi, I'm <span class="text-light">Gurusabarish</span>, a passionate <span class="text-light">web
- developer and ML engineer</span> from India. I tend to make use
+ Hi, I'm <span class="text-light">{{ .Site.Params.name }}</span>, a passionate <span
+ class="text-light">{{ .Site.Params.jops_about | default "Your jop"}}</span> from India. I tend
+ to make use
of modern web technologies to build websites that looks great, feels fantastic, and functions
correctly.
<br><br>
- You can check my <a href="/blog">blog</a> and my <a href="https://github.com/gurusabarish"
+ You can check my <a href="/blog">blog</a> and my <a href="{{ .Site.Params.github | default "#" }}"
target="_blank">github</a> for more details.
</div>
<div class="text-center">
- <button type="button" class="btn btn-info">resume</button>
+ <a href="{{ .Site.Params.resume | default "#" }}" class="btn btn-info" role="button"
+ aria-pressed="true">Resume</a>
</div>
</div>
</div>