Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ defaults:
path: "blog"
values:
layout: "default"
-
scope:
path: "team"
values:
layout: "default"
-
scope:
type: "posts"
Expand Down
14 changes: 14 additions & 0 deletions _data/members.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
founders:
- alex

core:
- richard
- stefan
- lucas
- ed
- ivana
- bart

members:
- john
- ken
2 changes: 2 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
- name: About
link: /
- name: Team
link: /team/
- name: Blog
link: /blog/
- name: Docs
Expand Down
21 changes: 21 additions & 0 deletions _includes/team-member.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<div class="team member">
{% assign author_id = include.name | prepend: "/staff_members/" | append: "/" %}
{% assign author = site.staff_members | where: "url", author_id | first %}
<img class="team avatar" src="{% include relative-src.html src=author.image_path %}"></img>
<div class="team name">{{ author.name }}</div>
<div class="team social">
{% if author.twitter_username %}
<a target="_blank" href="https://twitter.com/{{ author.twitter_username }}"><i class="fab fa-twitter"></i></a>
{% endif %}
{% if author.github_username %}
<a target="_blank" href="https://github.com/{{ author.github_username }}"><i class="fab fa-github"></i></a>
{% endif %}
{% if author.linkedin_username %}
<a target="_blank" href="https://linkedin.com/{{ author.linkedin_username }}"><i class="fab fa-linkedin"></i></a>
{% endif %}
{% if author.webpage %}
<a target="_blank" href="https://linkedin.com/{{ author.webpage }}"><i class="fas fa-globe-europe"></i></a>
{% endif %}
</div>
<p class="team blurb">{{ author.blurb }}</p>
</div>
8 changes: 8 additions & 0 deletions _includes/team-members.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div class="team">
<div class="team title">{{ include.type }}</div>
<div class="team members">
{% for member in include.members %}
{% include team-member.html name=member %}
{% endfor %}
</div>
</div>
137 changes: 71 additions & 66 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,81 +1,86 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

{% seo %}
{% feed_meta %}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="apple-touch-icon" href="{{ site.baseurl }}/apple-touch-icon.png">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/touch-icon.png" sizes="192x192">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicon.png">
{% seo %}
{% feed_meta %}

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300|Rubik:300">
<link rel="apple-touch-icon" href="{{ site.baseurl }}/apple-touch-icon.png">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/touch-icon.png" sizes="192x192">
<link rel="icon" type="image/png" href="{{ site.baseurl }}/images/favicon.png">

<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300|Rubik:300">

<link rel="stylesheet" href="{{ site.baseurl }}/css/screen.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/highlighter/gruvbox.light.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400">

{% if jekyll.environment == 'production' and site.google_analytics_key != '' %}
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', '{{ site.google_analytics_key }}', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
{% endif %}
</head>
<link rel="stylesheet" href="{{ site.baseurl }}/css/screen.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/highlighter/gruvbox.light.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">

<body>
<header id="mainHeader">
<div class="container">
<div class="company-name">
<a href="{{ site.baseurl }}/">
<span class="dark-logo"><img src="{{ site.baseurl }}/images/openfaas_dark.png" alt="dark OpenFaaS logo"></span>
<span class="light-logo"><img src="{{ site.baseurl }}/images/openfaas_light.png" alt="light OpenFaaS logo"></span>
</a>
</div>
{% include navigation.html %}
{% if jekyll.environment == 'production' and site.google_analytics_key != '' %}
<script>
window.ga = window.ga || function () { (ga.q = ga.q || []).push(arguments) }; ga.l = +new Date;
ga('create', '{{ site.google_analytics_key }}', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
{% endif %}
</head>

<body>
<header id="mainHeader">
<div class="container">
<div class="company-name">
<a href="{{ site.baseurl }}/">
<span class="dark-logo"><img src="{{ site.baseurl }}/images/openfaas_dark.png" alt="dark OpenFaaS logo"></span>
<span class="light-logo"><img src="{{ site.baseurl }}/images/openfaas_light.png" alt="light OpenFaaS logo"></span>
</a>
</div>
</header>
{% include navigation.html %}
</div>
</header>

{{ content }}
{{ content }}

<footer>
<div class="container">
<ul class="footer-left-links">
{% for link in site.data.footer.left_links %}
<li>
<a {% if link.new_window %}target="_blank"{% endif %} href="{% include relative-src.html src=link.link %}" {% if link.social_icon %}class="{{ link.social_icon | slugify }}-icon"{% endif %}>
{% if link.social_icon %}{% include social-icon.html icon=link.social_icon %}{% endif %}
{{ link.name }}
</a>
</li>
{% endfor %}
</ul>
<ul class="footer-right-links">
{% for link in site.data.footer.right_links %}
<li>
<a {% if link.new_window %}target="_blank"{% endif %} href="{% include relative-src.html src=link.link %}" {% if link.social_icon %}class="{{ link.social_icon | slugify }}-icon"{% endif %}>
{% if link.social_icon %}{% include social-icon.html icon=link.social_icon %}{% endif %}
{{ link.name }}
</a>
</li>
{% endfor %}
</ul>
<p class="copyright">
<a href="https://cloudcannon.com/">
Template by CloudCannon
<footer>
<div class="container">
<ul class="footer-left-links">
{% for link in site.data.footer.left_links %}
<li>
<a {% if link.new_window %}target="_blank" {% endif %} href="{% include relative-src.html src=link.link %}" {% if
link.social_icon %}class="{{ link.social_icon | slugify }}-icon" {% endif %}>
{% if link.social_icon %}{% include social-icon.html icon=link.social_icon %}{% endif %}
{{ link.name }}
</a>
</p>
</div>
</footer>
</li>
{% endfor %}
</ul>
<ul class="footer-right-links">
{% for link in site.data.footer.right_links %}
<li>
<a {% if link.new_window %}target="_blank" {% endif %} href="{% include relative-src.html src=link.link %}" {% if
link.social_icon %}class="{{ link.social_icon | slugify }}-icon" {% endif %}>
{% if link.social_icon %}{% include social-icon.html icon=link.social_icon %}{% endif %}
{{ link.name }}
</a>
</li>
{% endfor %}
</ul>
<p class="copyright">
<a href="https://cloudcannon.com/">
Template by CloudCannon
</a>
</p>
</div>
</footer>

<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="{{ site.baseurl }}/js/main.js"></script>
</body>

<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="{{ site.baseurl }}/js/main.js"></script>
</body>
</html>
</html>
64 changes: 64 additions & 0 deletions _sass/team.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@import "variables";

.team {
.title {
text-align: left;
font-size: 2.6em;
margin: 0;
padding-top: 50px;
}

.name {
text-align: center;
font-size: 1.6em;
margin: 0;
padding-top: 5px;
}

.social {
padding-top: 5px;
text-align: center;
width: 100%;

a {
font-size: 1.2em;
display: inline-block;
}
}

.members {
padding-top: 10px;
padding-bottom: 10px;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));
}

.member {
background-color: #EEEEEE;
border-radius: 10px;
padding: 5px;
margin-top: 10px;
margin-left: 5px;

text-align: center;
flex: 1 1 160px;
}

.avatar {
width: 100%;
border-radius: 5%;
}

.blurb {
font-family: "Merriweather", serif;
font-size: 14px;
word-wrap: break-word;
margin: 0;
padding-top: 5px;
}
}

.teams {
padding-bottom: 20px;
}
3 changes: 3 additions & 0 deletions _staff_members/alex.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Alex Ellis
position: Founder
image_path: /images/author/ellis.jpg
twitter_username: alexellisuk
github_username: alexellis
linkedin_username: alexellisuk
webpage: https://www.alexellis.io/
blurb: Founder of <a href="https://twitter.com/openfaas">@openfaas</a>. Open Source <a href="https://twitter.com/vmware">@vmware</a>.
---

8 changes: 8 additions & 0 deletions _staff_members/bart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Bart Smykla
position: Contributor
image_path: /images/author/bart.jpg
github_username: bartsmykla
twitter_username: bartsmykla
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
9 changes: 9 additions & 0 deletions _staff_members/burton.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Burton Rheutan
position: Contributor
image_path: /images/author/burton.jpg
twitter_username: _burtonr
github_username: burtonr
webpage: https://www.burtonr.com/
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
8 changes: 8 additions & 0 deletions _staff_members/ed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Edward Wilde
position: Contributor
image_path: /images/author/ed.jpg
github_username: ewilde
webpage: http://blogs.edwardwilde.com/
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
8 changes: 8 additions & 0 deletions _staff_members/ivana.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Ivana Yovcheva
position: Contributor
image_path: /images/author/ivana.jpg
twitter_username: ivanabyov
github_username: ivanayov
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
9 changes: 9 additions & 0 deletions _staff_members/john.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: John McCabe
position: Contributor
image_path: /images/author/john.jpg
twitter_username: mccabejohn
github_username: johnmccabe
webpage: https://johnmccabe.net
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
10 changes: 10 additions & 0 deletions _staff_members/ken.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Ken Fukuyama
position: Contributor
image_path: /images/author/ken.jpg
twitter_username: kenfdev
github_username: kenfdev
webpage: http://kenev.net/
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
k
9 changes: 9 additions & 0 deletions _staff_members/lucas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Lucas Roesler
position: Contributor
image_path: /images/author/lucas.jpg
twitter_username: theaxer
github_username: LucasRoesler
webpage: https://lucasroesler.com/
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---
2 changes: 2 additions & 0 deletions _staff_members/richard.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Richard Gee
position: Contributor
image_path: /images/author/richard.jpg
twitter_username: rgee0
github_username: rgee0
webpage: https://blog.technologee.co.uk/
blurb: Community <a href="https://twitter.com/openfaas">@openfaas</a>.
---

2 changes: 2 additions & 0 deletions _staff_members/stefan.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ name: Stefan Prodan
position: Contributor
image_path: /images/author/stefan.jpg
twitter_username: stefanprodan
github_username: stefanprodan
webpage: https://stefanprodan.com/
blurb: Core contributor <a href="https://twitter.com/openfaas">@openfaas</a>. DX Engineer <a href="https://twitter.com/weaveworks">@weaveworks</a>.
---
1 change: 1 addition & 0 deletions css/screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
@import "navigation";
@import "footer";
@import "table";
@import "team";
Binary file added images/author/bart.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/burton.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/ed.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/ivana.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/john.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/ken.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/author/lucas.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading