This commit is contained in:
gurusabarish
2020-09-07 23:25:48 +05:30
parent 95c28df2d7
commit 4dd1bd54d2
2 changed files with 16 additions and 6 deletions
+6
View File
@@ -22,6 +22,12 @@ title = "Hugo-blog"
thing2_des = "I train robust models for various tasks." thing2_des = "I train robust models for various tasks."
thing3_des = "I love to build things for web." 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 # Navbar Menus
[[menu.main]] [[menu.main]]
name = "Blog" name = "Blog"
+10 -6
View File
@@ -3,10 +3,11 @@
<div class="container"> <div class="container">
<div class="about-me text-center font-weight-bold text-secondary">About Me</div> <div class="about-me text-center font-weight-bold text-secondary">About Me</div>
</div> </div>
<div class="row justify-content-center "> <div class="row justify-content-center ">
<div class="col-md-3 pt-5 text-center"> <div class="col-md-3 pt-5 text-center">
<img src="/images/gurusabarish.jpg" width="200px" alt="..." class="rounded"> <img src="{{ .Site.Params.profile_image }}" width="200px" alt="{{ .Site.Params.name }}" class="rounded">
<div class="about-me jop font-weight-bold text-secondary">web developper</div> <div class="about-me jop font-weight-bold text-secondary">{{ .Site.Params.jop }}</div>
{{ if .Site.Params.linkedin }} {{ if .Site.Params.linkedin }}
<a class="text-white" href="{{ .Site.Params.linkedin }}" target="_blank"> <a class="text-white" href="{{ .Site.Params.linkedin }}" target="_blank">
@@ -19,19 +20,22 @@
{{ end }} {{ end }}
</div> </div>
<div class="col-md-7 pt-5 "> <div class="col-md-7 pt-5 ">
<div class="about-content text-secondary p-3"> <div class="about-content text-secondary p-3">
Hi, I'm <span class="text-light">Gurusabarish</span>, a passionate <span class="text-light">web Hi, I'm <span class="text-light">{{ .Site.Params.name }}</span>, a passionate <span
developer and ML engineer</span> from India. I tend to make use 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 of modern web technologies to build websites that looks great, feels fantastic, and functions
correctly. correctly.
<br><br> <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. target="_blank">github</a> for more details.
</div> </div>
<div class="text-center"> <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> </div>
</div> </div>