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

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMd. Emruz Hossain <hossainemruz@gmail.com>2020-07-22 01:14:08 +0300
committerGitHub <noreply@github.com>2020-07-22 01:14:08 +0300
commitfa4d47497403491cff184d226a5b2a07ad5dc081 (patch)
tree9dd7afb7c54f83533361282e4ecd011d59cbecf2 /layouts/partials/sections/about.html
parent647578e88be55c5cbb2eda157e17242f56ee5630 (diff)
Refactor sidebar logic + Add Table of Contents in reading page (#33)
* Refactor sidebar logic + fix responsiveness * Add TOC * Add Pagination * Update exampleSite * Update README.md
Diffstat (limited to 'layouts/partials/sections/about.html')
-rw-r--r--layouts/partials/sections/about.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/layouts/partials/sections/about.html b/layouts/partials/sections/about.html
new file mode 100644
index 0000000..e2888b4
--- /dev/null
+++ b/layouts/partials/sections/about.html
@@ -0,0 +1,45 @@
+<div class="container anchor p-lg-5 about-section" id="{{ replace (lower .section.name) " " "-" }}">
+ <div class="row pt-sm-2 pt-md-4 align-self-center">
+ <!-- summary -->
+ <div class="col-sm-6">
+ <h3 class="p-1">{{ site.Params.author.name }}</h3>
+ {{ if .designation }}
+ <h5 class="p-1">
+ {{ .designation }}
+ {{ if .company }}
+ at <a href="{{ .company.url }}">{{ .company.name }}</a>
+ {{ end }}
+ </h5>
+ {{ end }}
+ <p class="p-1 text-justify">
+ {{ .summary | markdownify }}
+ </p>
+ <div class="text-container ml-auto">
+ <ul class="social-link d-flex">
+ {{ range .socialLinks }}
+ <li>
+ {{ if eq .name "Email" }}
+ <a href="mailto:{{ .url }}" target="/"><i class="{{ .icon }}"></i></a>
+ {{ else }}
+ <a href="{{ .url }}" target="/"><i class="{{ .icon }}"></i></a>
+ {{ end }}
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+ {{ if .resume }}
+ <a href="{{ .resume }}" target="#"
+ ><button class="btn btn-dark">My Resume</button></a
+ >
+ {{ end }}
+ </div>
+ <!-- soft skills circular-progressbar -->
+ <div class="col-sm-6 pt-5 pl-md-4 pl-sm-3 pt-sm-0">
+ <div class="row">
+ {{ range .softSkills }}
+ {{ partial "misc/soft-skills.html" . }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+</div>