diff --git a/site/content/comite.md b/site/content/comite.md
new file mode 100644
index 0000000..d2197d1
--- /dev/null
+++ b/site/content/comite.md
@@ -0,0 +1,24 @@
+---
+title: Comité
+featured_image: "images/banner5.jpg"
+omit_header_text: true
+type: page
+menu:
+ main: {}
+---
+
+Le comité est composé des membres suivants, qui oeuvrent au bon fonctionnement
+du club.
+
+### Comité
+
+{{< contact-list image="/images/fleches.jpg" name="William Rey" role="Président" >}}
+{{< contact-list image="/images/fleches-2.jpg" name="Barbara Emery" role="Secrétaire" >}}
+{{< contact-list image="/images/fleches.jpg" name="Dominique Métrailler" role="Trésorière" >}}
+{{< contact-list image="/images/fleches-2.jpg" name="Christophe Schwery" role="Entraîneur" >}}
+
+### Responsables
+
+{{< contact-list image="/images/fleches.jpg" name="William Rey" role="Responsable Field" >}}
+{{< contact-list image="/images/fleches-2.jpg" name="Christophe Schwery" role="Responsable Ciblerie" >}}
+{{< contact-list image="/images/fleches.jpg" name="Thomas Schwery" role="Responsable site web" >}}
diff --git a/site/layouts/_default/baseof.html b/site/layouts/_default/baseof.html
new file mode 100644
index 0000000..45f076c
--- /dev/null
+++ b/site/layouts/_default/baseof.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+ {{/* NOTE: the Site's title, and if there is a page title, that is set too */}}
+ {{ block "title" . }}{{ .Site.Title }} {{ with .Params.Title }} | {{ . }}{{ end }}{{ end }}
+
+
+
+
+ {{ .Hugo.Generator }}
+ {{/* NOTE: For Production make sure you add `HUGO_ENV="production"` before your build command */}}
+ {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
+
+ {{ else }}
+
+ {{ end }}
+
+ {{/* For production build, we want to upgrade insecure requests to HTTPS */}}
+ {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
+
+ {{ end }}
+
+ {{ $stylesheet := .Site.Data.webpack_assets.app }}
+ {{ with $stylesheet.css }}
+
+ {{ end }}
+
+ {{ range .Site.Params.custom_css }}
+
+ {{ end }}
+
+ {{ block "favicon" . }}
+ {{ partial "site-favicon.html" . }}
+ {{ end }}
+
+ {{ if .RSSLink }}
+
+
+ {{ end }}
+
+ {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
+ {{- template "_internal/opengraph.html" . -}}
+ {{- template "_internal/google_news.html" . -}}
+ {{- template "_internal/schema.html" . -}}
+ {{- template "_internal/twitter_cards.html" . -}}
+
+ {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
+ {{ template "_internal/google_analytics_async.html" . }}
+ {{ end }}
+
+
+
+
+ {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
+
+ {{ block "main" . }}{{ end }}
+
+ {{ block "footer" . }}{{ partial "site-footer.html" . }}{{ end }}
+ {{ block "scripts" . }}{{ partial "site-scripts.html" . }}{{ end }}
+
+
diff --git a/site/layouts/shortcodes/contact-list.html b/site/layouts/shortcodes/contact-list.html
new file mode 100644
index 0000000..dbca25e
--- /dev/null
+++ b/site/layouts/shortcodes/contact-list.html
@@ -0,0 +1,9 @@
+
+
+

+
+
+
{{.Get "name" }}
+ {{.Get "role" }}
+
+
diff --git a/site/static/images/banner5.jpg b/site/static/images/banner5.jpg
new file mode 100644
index 0000000..690d3f1
Binary files /dev/null and b/site/static/images/banner5.jpg differ
diff --git a/site/static/images/fleches-2.jpg b/site/static/images/fleches-2.jpg
new file mode 100644
index 0000000..9d124d0
Binary files /dev/null and b/site/static/images/fleches-2.jpg differ
diff --git a/site/static/images/fleches.jpg b/site/static/images/fleches.jpg
new file mode 100644
index 0000000..c37a1d9
Binary files /dev/null and b/site/static/images/fleches.jpg differ