diff --git a/README.md b/README.md
index 7a9224f..ebef72b 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,3 @@
# ghpages-resume
-A simple GitHub Pages powered resume template.
+
+A simple Jekyll + GitHub Pages powered resume template.
diff --git a/_config.yml b/_config.yml
index 79adf26..c3647b2 100644
--- a/_config.yml
+++ b/_config.yml
@@ -6,4 +6,9 @@ description: "A resume template for Jekyll and GitHub Pages sites."
markdown: kramdown
sass:
sass_dir: _sass
- style: compressed
\ No newline at end of file
+ style: compressed
+
+# Resume settings
+resume_name: "Homer J. Simpson"
+resume_title: "Nuclear Safety Inspector"
+resume_contact_email: "homerjsimpson@youremailaddress.com"
diff --git a/_includes/footer.html b/_includes/footer.html
deleted file mode 100644
index 7609c46..0000000
--- a/_includes/footer.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/_includes/header.html b/_includes/header.html
deleted file mode 100644
index 951abd1..0000000
--- a/_includes/header.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
diff --git a/_layouts/default.html b/_layouts/default.html
deleted file mode 100644
index e4ab96f..0000000
--- a/_layouts/default.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- {% include head.html %}
-
-
-
- {% include header.html %}
-
-
-
- {% include footer.html %}
-
-
-
-
diff --git a/_layouts/home.html b/_layouts/home.html
deleted file mode 100644
index e4ab96f..0000000
--- a/_layouts/home.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
- {% include head.html %}
-
-
-
- {% include header.html %}
-
-
-
- {% include footer.html %}
-
-
-
-
diff --git a/_layouts/page.html b/_layouts/page.html
deleted file mode 100644
index 74c1a11..0000000
--- a/_layouts/page.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: default
----
-
-
-
-
-
- {{ content }}
-
-
-
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index 74c1a11..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: default
----
-
-
-
-
-
- {{ content }}
-
-
-
diff --git a/_layouts/resume.html b/_layouts/resume.html
new file mode 100644
index 0000000..438e086
--- /dev/null
+++ b/_layouts/resume.html
@@ -0,0 +1,45 @@
+
+
+
+ {% include head.html %}
+
+
+
+
+
+
+
+
diff --git a/_posts/2015-04-02-hello-world.md b/_posts/2015-04-02-hello-world.md
deleted file mode 100644
index 5620017..0000000
--- a/_posts/2015-04-02-hello-world.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-layout: post
-title: "Hello World"
----
-
-Start writing content...
\ No newline at end of file
diff --git a/_sass/_home.scss b/_sass/_resume.scss
similarity index 100%
rename from _sass/_home.scss
rename to _sass/_resume.scss
diff --git a/css/main.scss b/css/main.scss
index e641fe7..2f921eb 100755
--- a/css/main.scss
+++ b/css/main.scss
@@ -11,4 +11,4 @@
@import "layout";
// Layouts
-@import "home";
\ No newline at end of file
+@import "resume";
\ No newline at end of file
diff --git a/favicon.png b/favicon.png
deleted file mode 100644
index 44befda..0000000
Binary files a/favicon.png and /dev/null differ
diff --git a/images/avatar.jpg b/images/avatar.jpg
new file mode 100644
index 0000000..5cbaec2
Binary files /dev/null and b/images/avatar.jpg differ
diff --git a/index.html b/index.html
index eda080b..448aefa 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,3 @@
---
-layout: home
----
-
-
-
-
+layout: resume
+---
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
deleted file mode 100644
index 38ef740..0000000
--- a/sitemap.xml
+++ /dev/null
@@ -1,20 +0,0 @@
----
----
-
-
- {% for post in site.posts %}
-
- {{ site.url }}{{ post.url | remove: 'index.html' }}
-
- {% endfor %}
-
- {% for page in site.pages %}
- {% if page.layout != nil %}
- {% if page.layout != 'feed' %}
-
- {{ site.url }}{{ page.url | remove: 'index.html' }}
-
- {% endif %}
- {% endif %}
- {% endfor %}
-
\ No newline at end of file