Skip to content

Commit 553659a

Browse files
committed
single page team layout complete
1 parent 2378586 commit 553659a

File tree

11 files changed

+20
-16
lines changed

11 files changed

+20
-16
lines changed

archetypes/team.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "{{ replace .Name "-" " " | title }}"
33
date: {{ .Date }}
4-
type: "Co-founder or member"
4+
brand: "Co-founder or member"
55
name: "John Wiggims"
66
img_url: ""
77
draft: false

content/team/dorris/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Dorris"
33
date: 2020-12-11T21:27:12-06:00
4-
type: "Co-founder"
4+
brand: "Co-founder"
55
name: "Dorris Scott"
66
draft: false
77
---

content/team/liz/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Liz"
33
date: 2020-12-11T21:51:41-06:00
4-
type: "Core Committee Member"
4+
brand: "Core Committee Member"
55
name: "Liz Hare"
66
draft: false
77
---

content/team/silvia/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Silvia"
33
date: 2020-12-11T21:49:32-06:00
4-
type: "Core Committee Member"
4+
brand: "Core Committee Member"
55
name: "Silvia Canelón"
66
draft: false
77
---

content/team/yanina/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Yanina"
33
date: 2020-12-11T21:51:14-06:00
4-
type: "Core Committee Member"
4+
brand: "Core Committee Member"
55
name: "Yanina Bellini Saibene"
66
draft: false
77
---

layouts/team/single.html

-6
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@import "https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700|Montserrat:300,400,500,600,700&display=swap";body{font-family:josefin sans,sans-serif;font-size:16px;color:#9d9ea5}h1,h2,h3,h4,h5,h6{font-family:montserrat,sans-serif;font-weight:600;color:#00113e}p{font-size:16px;color:#9d9ea5}h1{font-size:60px}h2{font-size:50px}h3{font-size:30px}h4{font-size:25px}h5{font-size:18px}h6{font-size:15px;font-weight:300}.btn{font-family:montserrat,sans-serif;border:none;border-radius:0}.btn:focus{box-shadow:none}.btn-area{padding:20px 45px}.btn-sm-rounded{border-radius:40px;color:#fff}.btn-primary{background:#eaa4a4;color:#fff}.btn-primary:hover{background:#e07b7b}.btn-primary a{color:#fff}.btn-secondary{background:#add6d2;color:#fff}.btn-secondary:hover{background:#8bc5bf}.site-navigation{padding:20px 0}.nav-link{font-family:montserrat,sans-serif;color:#00113e;transition:all .3s ease;padding:15px 18px;position:relative}.nav-link:last-child{margin-left:15px}.navbar-brand{padding:0;margin:0}.navbar-brand img{max-width:78px}.card-img-top{width:100%;height:30vh;object-fit:contain}.site-counter{padding:85px 0;background-color:#add6d2;color:#fff}.jumbotron{background-color:#fff}
1+
@import "https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700|Montserrat:300,400,500,600,700&display=swap";body{font-family:josefin sans,sans-serif;font-size:16px;color:#9d9ea5}h1,h2,h3,h4,h5,h6{font-family:montserrat,sans-serif;font-weight:600;color:#00113e}p{font-size:16px;color:#9d9ea5}h1{font-size:60px}h2{font-size:50px}h3{font-size:30px}h4{font-size:25px}h5{font-size:18px}h6{font-size:15px;font-weight:300}.btn{font-family:montserrat,sans-serif;border:none;border-radius:0}.btn:focus{box-shadow:none}.btn-area{padding:20px 45px}.btn-sm-rounded{border-radius:40px;color:#fff}.btn-primary{background:#eaa4a4;color:#fff}.btn-primary:hover{background:#e07b7b}.btn-primary a{color:#fff}.btn-secondary{background:#add6d2;color:#fff}.btn-secondary:hover{background:#8bc5bf}.site-navigation{padding:20px 0}.nav-link{font-family:montserrat,sans-serif;color:#00113e;transition:all .3s ease;padding:15px 18px;position:relative}.nav-link:last-child{margin-left:15px}.navbar-brand{padding:0;margin:0}.navbar-brand img{max-width:78px}.card-img-top{width:100%;height:30vh;object-fit:contain}.site-counter{padding:85px 0;background-color:#add6d2;color:#fff}.team-content p{width:50%}.jumbotron{background-color:#fff}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"Target":"css/style.min.7e2043acc8e2903a318674c83e61a138f70d928ba3f46f2e8ad38e0a4c1967cb.css","MediaType":"text/css","Data":{"Integrity":"sha256-fiBDrMjikDoxhnTIPmGhOPcNkouj9G8uitOOCkwZZ8s="}}
1+
{"Target":"css/style.min.f2b7755fb33494b481c4bc08df1acb41b71cf7955eea9f547f63bc8d47adf5c2.css","MediaType":"text/css","Data":{"Integrity":"sha256-8rd1X7M0lLSBxLwI3xrLQbcc95Ve6p9Uf2O8jUet9cI="}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.team-content p{
2+
width: 50%;
3+
}

themes/basic/assets/css/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
@import "navigation";
55
@import "webinars";
66
@import "site-counter";
7+
@import "team-single";
78

89
.jumbotron {
910
background-color: $body-color;

themes/basic/layouts/team/single.html

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
{{ define "main" }}
2-
<h2>Hello world</h2>
3-
{{ end }}
1+
{{ define "main"}}
2+
3+
<h1>{{.Title}}</h1>
4+
5+
<div class="team-content d-flex justify-content-around">
6+
{{ .Content}}
7+
</div>
8+
9+
{{ end}}

0 commit comments

Comments
 (0)