diff --git a/_pages/repositories.md b/_pages/repositories.md
deleted file mode 100644
index cba38708..00000000
--- a/_pages/repositories.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-layout: page
-permalink: /repositories/
-title: repositories
-description: Edit the `_data/repositories.yml` and change the `github_users` and `github_repos` lists to include your own GitHub profile and repositories.
-nav: true
-nav_order: 4
----
-
-{% if site.data.repositories.github_users %}
-
-## GitHub users
-
-
- {% for user in site.data.repositories.github_users %}
- {% include repository/repo_user.liquid username=user %}
- {% endfor %}
-
-
----
-
-{% if site.repo_trophies.enabled %}
-{% for user in site.data.repositories.github_users %}
-{% if site.data.repositories.github_users.size > 1 %}
-
- {{ user }}
- {% endif %}
-
- {% include repository/repo_trophies.liquid username=user %}
-
-
----
-
-{% endfor %}
-{% endif %}
-{% endif %}
-
-{% if site.data.repositories.github_repos %}
-
-## GitHub Repositories
-
-
- {% for repo in site.data.repositories.github_repos %}
- {% include repository/repo.liquid repository=repo %}
- {% endfor %}
-
-{% endif %}