-
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 #24 from chriswachira/add-site-stack-section
feat(hugo): Introduce dynamic & configurable Tech Stack section
- Loading branch information
Showing
9 changed files
with
39 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "themes/hugo-profile"] | ||
path = themes/hugo-profile | ||
url = https://github.com/gurusabarish/hugo-profile.git | ||
url = https://github.com/chriswachira/hugo-profile.git |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{{ if .Site.Params.stack.enable | default false }} | ||
<section id="tech-stack" class="py-0 py-sm-5"> | ||
<div class="container bg-transparent"> | ||
<h3 class="text-center bg-transparent">{{ .Site.Params.stack.title }}</h3> | ||
<div class="bg-transparent row justify-content-center px-3 py-5"> | ||
|
||
{{ range .Site.Params.stack.items }} | ||
<div class="col-sm-12 col-md-12 col-lg-4"> | ||
<div class="row justify-content-center"> | ||
<div class="col-sm-12 col-md-9 pt-5 image {{ if .Site.Params.animate }}animate{{ end }} px-5 px-md-5 px-lg-0 text-center"> | ||
<img src="{{ .image }}" | ||
class="img-thumbnail mx-auto{{ if .Site.Params.hero.roundImage }} rounded-circle{{ end }}" | ||
alt="" | ||
> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} | ||
|
||
</div> | ||
</div> | ||
</section> | ||
{{ end }} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Submodule hugo-profile
updated
10 files
+1 −1 | README.md | |
+1 −1 | exampleSite/config.yaml | |
+2 −2 | exampleSite/content/gallery.md | |
+2 −2 | layouts/_default/gallery.html | |
+5 −0 | layouts/_default/single.html | |
+5 −4 | layouts/partials/head.html | |
+4 −0 | layouts/partials/head/extensions.html | |
+10 −2 | layouts/partials/sections/contact.html | |
+9 −1 | static/css/index.css | |
+15 −3 | static/css/single.css |