diff --git a/_config.yml b/_config.yml
index d186e99..79975e7 100644
--- a/_config.yml
+++ b/_config.yml
@@ -10,9 +10,6 @@ exclude:
 sass:
   style: :compressed
 
-gems:
-  - jekyll-sitemap
-
 defaults:
   - scope:
         path: _posts
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000..901eada
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,11 @@
+---
+layout: minify
+---
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+	{% for page in site.pages %}
+	<url>
+		<loc>{{ site.url }}{{ page.url }}</loc>
+	</url>
+	{% endfor %}
+</urlset>