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

github.com/samrobbins85/hugo-developer-portfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Robbins <samrobbinsgb@gmail.com>2020-02-01 19:59:44 +0300
committerSam Robbins <samrobbinsgb@gmail.com>2020-02-01 19:59:44 +0300
commit213c32b5f3bf161b029a9280a464950994e1259f (patch)
tree6f652e6da749de0d3ff888b1f9870352ac966d5f
parent6cd8272eae98493dec45560e2df131430de5d868 (diff)
Add section for Leadership and Teamwork
-rw-r--r--assets/css/style.css4
-rw-r--r--layouts/index.html35
2 files changed, 38 insertions, 1 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 0ae20b5..84ae52a 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -15,6 +15,8 @@ VERSION: Version Number
}
+
+
.uk-lightbox{
background: rgba(0, 0, 0, 0.7);
/*As there isn't firefox support for this I won't use it*/
@@ -53,7 +55,7 @@ body {
font-family: roboto, sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 15px;
- color: #454545
+ color: #454545;
}
.portfolio h3{
diff --git a/layouts/index.html b/layouts/index.html
index 8000033..6ca9e65 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -303,6 +303,41 @@
+<!-- experience -->
+<section class="section">
+ <div class="container">
+ <div class="row justify-content-around">
+ <div class="col-lg-12 text-center">
+ <h2 class="section-title">Leadership and Teamwork</h2>
+ </div>
+
+
+ <div class="uk-child-width-1-4@l uk-child-width-1-2 uk-text-center uk-flex-between" uk-grid style="padding-left: 20px; padding-right: 20px">
+
+ {{ range .Site.Data.homepage.leadership.item }}
+ <div>
+ <div class="uk-card uk-card-default uk-height-large">
+ <div class="uk-card-media-top">
+ <img class="contain experience" src="{{.logo}}" alt="" style="padding: 20px">
+ </div>
+ <div class="uk-card-body" style="padding-top: 0">
+ <div style="height: 5em">
+ <h3 class="uk-card-title">{{.title}}</h3>
+ </div>
+ <p style="height: 4em">{{.company}}</p>
+ <p>{{.duration}}</p>
+ </div>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+</section>
+<!-- ./experience -->
+
+
+
+
+
<!--Handle the lazy loading-->