diff --git a/views/footer.pug b/views/footer.pug
index d1906cd..9660448 100644
--- a/views/footer.pug
+++ b/views/footer.pug
@@ -1,5 +1,7 @@
- url = "http://seanland.ca"
-p Made with #[a(href=url) ©️ Sean Clarke] Copyright: #[a(href=url) ©️ Sean Clarke]
+- git = "https://git.snld.xyz/Seanland/unesco-tracker"
+
+p Made with #[a(href=git) unesco-tracker] | Copyright: #[a(href=url) ©️ Sean Clarke]
p
Buy me a coffee
diff --git a/views/index.pug b/views/index.pug
index ee5e0b2..ea0573b 100644
--- a/views/index.pug
+++ b/views/index.pug
@@ -4,7 +4,16 @@ block content
h1= title
p Welcome to #{title}
+ h2= sites.length
+
each site in sites
h3= site.site
+ //- Commmand list of all the states
+ h5
+ - var states = site.states.split(',')
+ - for (var i = 0; i < states.length; i++)
+ | #{states[i]}
+ if (i + 1 < states.length)
+ | ,
include footer.pug