diff --git a/index.html b/index.html
index 193ad73..3ad2874 100644
--- a/index.html
+++ b/index.html
@@ -1,4 +1,4 @@
-
+
GitHub Résumé
@@ -10,6 +10,7 @@
+
diff --git a/js/githubresume.js b/js/githubresume.js
index c9f4304..2d1902e 100644
--- a/js/githubresume.js
+++ b/js/githubresume.js
@@ -84,6 +84,18 @@ var run = function() {
maxItems = 5,
maxLanguages = 9;
+ if (githubresume_opt_out_users.indexOf(username) >= 0) {
+ $.ajax({
+ url: 'views/opt_out.html',
+ dataType: 'html',
+ success: function(data) {
+ var template = data;
+ $('#resume').html(data);
+ }
+ });
+ return;
+ }
+
var res = github_user(username, function(data) {
data = data.data;
var sinceDate = new Date(data.created_at);
diff --git a/js/opt_out_users.js b/js/opt_out_users.js
new file mode 100644
index 0000000..726fd49
--- /dev/null
+++ b/js/opt_out_users.js
@@ -0,0 +1,3 @@
+var githubresume_opt_out_users = [
+ "augustl"
+];
diff --git a/views/opt_out.html b/views/opt_out.html
new file mode 100644
index 0000000..2e27a84
--- /dev/null
+++ b/views/opt_out.html
@@ -0,0 +1,10 @@
+
+
This user has opted out
+
+
+
This user has opted out of this unofficial Github resume service.
+
+
+
+
+