diff --git a/config.toml b/config.toml
index a249b81..4791b17 100644
--- a/config.toml
+++ b/config.toml
@@ -3,4 +3,5 @@ baseURL = "https://devrelcollective.fun/"
languageCode = "en-us"
title = "The DevRel Collective"
theme = "avocado"
-googleAnalytics = "UA-113313834-3"
\ No newline at end of file
+googleAnalytics = "UA-113313834-3"
+meta = "DevRel Collective 🥑- and So Can You! exists to facilitate sharing information, resources, and encouragement among the Developer Relations community."
\ No newline at end of file
diff --git a/data/admins/dan.yaml b/data/admins/dan.yaml
new file mode 100644
index 0000000..a136ca3
--- /dev/null
+++ b/data/admins/dan.yaml
@@ -0,0 +1,3 @@
+name: Dan
+twitter: phrawzty
+airport: Paris, France
\ No newline at end of file
diff --git a/data/admins/davidgs.yaml b/data/admins/davidgs.yaml
new file mode 100644
index 0000000..0087217
--- /dev/null
+++ b/data/admins/davidgs.yaml
@@ -0,0 +1,3 @@
+name: David
+twitter: davidgsIoT
+airport: Raleigh, NC
\ No newline at end of file
diff --git a/data/admins/jocelyn.yaml b/data/admins/jocelyn.yaml
new file mode 100644
index 0000000..bbb492c
--- /dev/null
+++ b/data/admins/jocelyn.yaml
@@ -0,0 +1,3 @@
+name: Jocelyn
+twitter: bffjossy
+airport: San Francisco, CA
\ No newline at end of file
diff --git a/data/admins/quintessence.yaml b/data/admins/quintessence.yaml
new file mode 100644
index 0000000..3b28dc5
--- /dev/null
+++ b/data/admins/quintessence.yaml
@@ -0,0 +1,3 @@
+name: Quintessence
+twitter: QuintessenceAnx
+airport: Buffalo, NY
\ No newline at end of file
diff --git a/themes/avocado/layouts/partials/admins.html b/themes/avocado/layouts/partials/admins.html
new file mode 100644
index 0000000..95c6ee8
--- /dev/null
+++ b/themes/avocado/layouts/partials/admins.html
@@ -0,0 +1,2 @@
+
+ {{ .airport }} ({{ .name }})
diff --git a/themes/avocado/layouts/partials/design.html b/themes/avocado/layouts/partials/design.html
index adf2489..3aa95b9 100644
--- a/themes/avocado/layouts/partials/design.html
+++ b/themes/avocado/layouts/partials/design.html
@@ -4,13 +4,17 @@
The closest airport to
-San Francisco, CA (Jocelyn)
- Buffalo, NY (Quintessence)
- Raleigh, NC (David)
- Paris, France (Dan)
-
The closest airport to
++ {{ range $.Site.Data.admins }} + {{ partial "admins.html" . }} + {{ end }} +
+ {{ else }} +No Admins!
+ {{ end }}