Team page (#1063)

* First draft team page

* Fix typo

* Generate team page with templates

* Add team to navigation

* Update www/contribute/team.html

Co-authored-by: Tim Brust <github@timbrust.de>

* Remove unnecessary code

* added my info

* feat(team): Norman Breau bio

Co-authored-by: Tim Brust <github@timbrust.de>
Co-authored-by: Jesse MacFadyen <purplecabbage@gmail.com>
Co-authored-by: Norman Breau <norman@normanbreau.com>
diff --git a/conf/_config.yml b/conf/_config.yml
index 7bbcc41..efe197c 100644
--- a/conf/_config.yml
+++ b/conf/_config.yml
@@ -80,3 +80,6 @@
     - static/css-src
 
 algolia_api_key: "0a916ab198bd93d031aa70611271e42e"
+
+collections:
+  - members
diff --git a/www/_includes/header.html b/www/_includes/header.html
index 9b3f16a..719f9f3 100644
--- a/www/_includes/header.html
+++ b/www/_includes/header.html
@@ -26,6 +26,9 @@
                         <li {% if page.contribute_tab %}class="active"{% endif %}>
                             <a href="{{ site.baseurl }}/contribute">Contribute</a>
                         </li>
+                        <li {% if page.team_tab %}class="active"{% endif %}>
+                            <a href="{{ site.baseurl }}/contribute/team.html">Team</a>
+                        </li>
                         <li>
                             <a href="{{ site.baseurl }}/#getstarted">Get Started</a>
                         </li>
diff --git a/www/_layouts/team.html b/www/_layouts/team.html
new file mode 100644
index 0000000..98400b3
--- /dev/null
+++ b/www/_layouts/team.html
@@ -0,0 +1,8 @@
+---
+layout: page
+team_tab: true
+---
+
+<div>
+    {{ content }}
+</div>
diff --git a/www/_members/jessemacfadyen.md b/www/_members/jessemacfadyen.md
new file mode 100644
index 0000000..752132c
--- /dev/null
+++ b/www/_members/jessemacfadyen.md
@@ -0,0 +1,11 @@
+---
+name: Jesse MacFadyen
+subtitle:  "<strong>PMC Member</strong> since forever."
+imageurl: https://avatars3.githubusercontent.com/u/46134?s=400&&v=4
+twitter: https:twitter.com/purplecabbage
+homepage: https://github.com/purplecabbage
+---
+
+A _PhoneGap_ contributor since day 1 and a _Cordova_ committer since day 0.  Jesse is part of a team at Adobe working on developer tooling to uniformly access multiple Adobe Experience Cloud APIs and services and extensibly enable the next generation of creative apps.
+
+_aka_ Project Firefly
diff --git a/www/_members/niklasmerz.md b/www/_members/niklasmerz.md
new file mode 100644
index 0000000..bbf1e6e
--- /dev/null
+++ b/www/_members/niklasmerz.md
@@ -0,0 +1,11 @@
+---
+name: Niklas Merz
+subtitle:  "<strong>PMC Member</strong> since Dec. 2019 and plugin author"
+imageurl: https://avatars1.githubusercontent.com/u/3585860?s=460&v=4
+twitter: https:twitter.com/niklasmaerz
+homepage: https://blog.merzlabs.com
+---
+
+At his day job he works on a Cordova app that became very complex over years. Contributes to Apache and develops plugins mostly in his free time.
+Started contributing patches and became active in Cordova development after hitting the limits and finding OS bugs. 
+Niklas mostly worked on the InAppBrowser plugin and cordova-ios but tries to help everywhere he can.
diff --git a/www/_members/normanbreau.md b/www/_members/normanbreau.md
new file mode 100644
index 0000000..8c3c64b
--- /dev/null
+++ b/www/_members/normanbreau.md
@@ -0,0 +1,9 @@
+---
+name: Norman Breau
+subtitle: "<strong>PMC Member</strong> since Aug. 2019 and App developer"
+imageurl: https://avatars1.githubusercontent.com/u/11200662?s=460&u=9634c6248d969ab6a5927f6c9f9d89cf92a82036&v=4
+twitter: https://twitter.com/NormanBreau
+homepage: https://breautek.com
+---
+
+At his day job, he maintains road asset management software that runs on mobile devices powered by Cordova. During his free time he contributes to Apache by helping manage tickets, providing support on Slack, and providing patches when possible.
diff --git a/www/contribute/index.html b/www/contribute/index.html
index f72d8a1..e74ae64 100644
--- a/www/contribute/index.html
+++ b/www/contribute/index.html
@@ -38,9 +38,13 @@
                     <a href="https://issues.apache.org/jira/browse/CB/?selectedTab=com.atlassian.jira.jira-projects-plugin:issues-panel">View All Issues</a>
                 </li>
                 <li>
-                    <span class="glyphicon glyphicon-user"></span><i>&nbsp;</i>
+                    <span class="glyphicon glyphicon-list-alt"></span><i>&nbsp;</i>
                     See all <a href="http://home.apache.org/phonebook.html?unix=cordova">Committers</a> / <a href="https://people.apache.org/unlistedclas.html">Contributors</a>
                 </li>
+                <li>
+                    <span class="glyphicon glyphicon-user"></span><i>&nbsp;</i>
+                    See all <a href="./team.html">Team</a>
+                </li>
             </ul>
         </div>
     </div>
diff --git a/www/contribute/team.html b/www/contribute/team.html
new file mode 100644
index 0000000..8041bfa
--- /dev/null
+++ b/www/contribute/team.html
@@ -0,0 +1,38 @@
+---
+layout: team
+title: Team
+---
+
+<div class="row">
+    <div class="col-sm-12 text-center">
+        <h1>Team</h1>
+        <p>These are some of people behind Apache Cordova</p>
+    </div>
+</div>
+
+{% for member in site.members %}
+<div class="row">
+    <div class="col-sm-8 col-xs-8">
+        <span>
+            <h2>{{ member.name }}</h2>
+            <p>{{ member.subtitle }}</p>
+        </span>
+    </div>
+</div>
+<div class="row">
+    <div class="col-sm-8">
+        <p>
+            {{ member.content }}
+        </p>
+    </div>
+    <div class="col-sm-3 col-sm-offset-1">
+        <img src="{{ member.imageurl }}"><img>
+        {% if member.twitter %}
+            <a href="{{ member.twitter }}">Twitter</a>
+        {% endif %}
+        {% if member.homepage %}
+            <a href="{{ member.homepage }}">Homepage</a>
+        {% endif %}
+    </div>
+</div>
+{% endfor %}