forked from hugo-toha/hugo-toha.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from hossainemruz/bug-fix
Make header linkable + fix bug
- Loading branch information
Showing
14 changed files
with
146 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,41 @@ | ||
<div class="container-fluid about bg-white anchor p-md-5 d-flex" id="about"> | ||
<div class="container"> | ||
<div class="row pt-sm-2 pt-md-4 align-self-center"> | ||
<!-- summery --> | ||
<div class="col-md-6"> | ||
<h3 class="p-1">{{ .Site.Data.home.author.name }}</h3> | ||
<h5 class="p-1"> | ||
{{ .Site.Data.about.designation }} at | ||
<a href="{{ .Site.Data.about.company.url }}" | ||
>{{ .Site.Data.about.company.name }}</a | ||
{{ if .Site.Data.about }} | ||
<!-- summery --> | ||
<div class="col-md-6"> | ||
<h3 class="p-1">{{ .Site.Data.home.author.name }}</h3> | ||
<h5 class="p-1"> | ||
{{ .Site.Data.about.designation }} at | ||
<a href="{{ .Site.Data.about.company.url }}" | ||
>{{ .Site.Data.about.company.name }}</a | ||
> | ||
</h5> | ||
<p class="p-1 text-justify"> | ||
{{ .Site.Data.about.summary | markdownify }} | ||
</p> | ||
<div class="text-container ml-auto"> | ||
<ul class="social-link d-flex"> | ||
{{ range .Site.Data.about.socialLinks }} | ||
<li> | ||
<a href="{{ .url }}" target="/"><i class="{{ .icon }}"></i></a> | ||
</li> | ||
{{ end }} | ||
</ul> | ||
</div> | ||
<a href="{{ .Site.Data.about.resume }}" target="#" | ||
><button class="btn btn-dark">My Resume</button></a | ||
> | ||
</h5> | ||
<p class="p-1 text-justify"> | ||
{{ .Site.Data.about.summary | markdownify }} | ||
</p> | ||
<div class="text-container ml-auto"> | ||
<ul class="social-link d-flex"> | ||
{{ range .Site.Data.about.socialLinks }} | ||
<li> | ||
<a href="{{ .url }}" target="/"><i class="{{ .icon }}"></i></a> | ||
</li> | ||
{{ end }} | ||
</ul> | ||
</div> | ||
<a href="{{ .Site.Data.about.resume }}" target="#" | ||
><button class="btn btn-dark">My Resume</button></a | ||
> | ||
</div> | ||
<!-- soft skills circular-progressbar --> | ||
<div class="col-md-6 pt-5 pl-md-4 pl-sm-3 pt-md-0"> | ||
<div class="row"> | ||
{{ range .Site.Data.about.softSkills }} | ||
{{ partial "progress/soft-skills" . }} | ||
{{ end }} | ||
<!-- soft skills circular-progressbar --> | ||
<div class="col-md-6 pt-5 pl-md-4 pl-sm-3 pt-md-0"> | ||
<div class="row"> | ||
{{ range .Site.Data.about.softSkills }} | ||
{{ partial "progress/soft-skills" . }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
<div class="container-fluid achievements bg-dimmed anchor pb-5" id="achievements"> | ||
<h1 class="text-center">Achievements</h1> | ||
{{ if .Site.Data.achievements }} | ||
<h1 class="text-center">Achievements</h1> | ||
|
||
<div class="container"> | ||
<div class="row" id="gallery"> | ||
<div class="container"> | ||
<div class="row" id="gallery"> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- achievements-holder holds achievement-entry --> | ||
<div class="d-none" id="achievements-holder"> | ||
{{ range .Site.Data.achievements.achievements }} | ||
{{ partial "misc/achievement.html" . }} | ||
{{ end }} | ||
</div> | ||
<!-- achievements-holder holds achievement-entry --> | ||
<div class="d-none" id="achievements-holder"> | ||
{{ range .Site.Data.achievements.achievements }} | ||
{{ partial "misc/achievement.html" . }} | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
<div class="container-fluid projects bg-dimmed anchor pb-5" id="projects"> | ||
<h1 class="text-center">Projects</h1> | ||
<div class="container ml-auto text-center"> | ||
<div class="btn-group flex-wrap" role="group" id="project-filter-buttons"> | ||
{{ range .Site.Data.projects.buttons }} | ||
<button type="button" class="btn btn-dark" data-filter="{{ .filter }}"> | ||
{{ .name }} | ||
</button> | ||
{{ end }} | ||
{{ if .Site.Data.projects }} | ||
<h1 class="text-center">Projects</h1> | ||
<div class="container ml-auto text-center"> | ||
<div class="btn-group flex-wrap" role="group" id="project-filter-buttons"> | ||
{{ range .Site.Data.projects.buttons }} | ||
<button type="button" class="btn btn-dark" data-filter="{{ .filter }}"> | ||
{{ .name }} | ||
</button> | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container filtr-projects"> | ||
<div class="row" id="project-card-holder"> | ||
{{ range .Site.Data.projects.projects }} | ||
{{ partial "cards/project" . }} | ||
{{ end }} | ||
<div class="container filtr-projects"> | ||
<div class="row" id="project-card-holder"> | ||
{{ range .Site.Data.projects.projects }} | ||
{{ partial "cards/project" . }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
<div class="container-fluid skills bg-dimmed anchor pb-5" id="skills"> | ||
<h1 class="text-center">Skills</h1> | ||
{{ if .Site.Data.skills }} | ||
<h1 class="text-center">Skills</h1> | ||
|
||
<div class="container d-flex-block"> | ||
<div class="row" id="primary-skills"> | ||
{{ range .Site.Data.skills.skills }} | ||
{{ partial "cards/skill.html" . }} | ||
{{ end }} | ||
<div class="container d-flex-block"> | ||
<div class="row" id="primary-skills"> | ||
{{ range .Site.Data.skills.skills }} | ||
{{ partial "cards/skill.html" . }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.