Deleting Jekyll folder that was accidentally added
diff --git a/docs/identity/v2/index.md b/docs/identity/v2/index.md
deleted file mode 100644
index c0e82bd..0000000
--- a/docs/identity/v2/index.md
+++ /dev/null
@@ -1,60 +0,0 @@
----
-layout: page
-title: Getting Started with Identity v2
----
-
-## Tokens
-
-A token is an arbitrary bit of text that is used to access resources. Each
-token has a scope that describes which resources are accessible with it. A
-token may be revoked at anytime and is valid for a finite duration.
-
-### Generate a token
-
-The nature of required and optional auth options will depend on your provider,
-but generally the `Username` and `IdentityEndpoint` fields are always
-required. Some providers will insist on a `Password` instead of an `APIKey`,
-others will prefer `TenantID` over `TenantName` - so it is always worth
-checking before writing your implementation in Go.
-
-{% highlight go %}
-import "github.com/rackspace/gophercloud/openstack/identity/v2/tokens"
-
-opts := tokens.AuthOptions{
-  IdentityEndpoint: "{identityURL}",
-  Username:         "{username}",
-  APIKey:           "{apiKey}",
-}
-
-token, err := tokens.Create(client, opts).Extract()
-{% endhighlight %}
-
-## Tenants
-
-A tenant is a container used to group or isolate API resources. Depending on
-the provider, a tenant can map to a customer, account, organization, or project.
-
-### List tenants
-
-{% highlight go %}
-import (
-  "github.com/rackspace/gophercloud/pagination"
-  "github.com/rackspace/gophercloud/openstack/identity/v2/tenants"
-)
-
-// We have the option of filtering the tenant list. If we want the full
-// collection, leave it as an empty struct
-opts := tenants.ListOpts{Limit: 10}
-
-// Retrieve a pager (i.e. a paginated collection)
-pager := tenants.List(client, opts)
-
-// Define an anonymous function to be executed on each page's iteration
-err := pager.EachPage(func(page pagination.Page) (bool, error) {
-  tenantList, err := tenants.ExtractTenants(page)
-
-  for _, t := range tenantList {
-    // "t" will be a tenants.Tenant
-  }
-})
-{% endhighlight %}
diff --git a/docs/identity/v3/index.md b/docs/identity/v3/index.md
deleted file mode 100644
index ab2da67..0000000
--- a/docs/identity/v3/index.md
+++ /dev/null
@@ -1,36 +0,0 @@
----
-layout: page
-title: Getting Started with Identity v3
----
-
-## Tokens
-
-### Generate a token
-
-### Get a token
-
-### Validate token
-
-### Revoke token
-
-## Endpoints
-
-### Create an endpoint
-
-### List endpoints
-
-### Update endpoint
-
-### Delete endpoint
-
-## Services
-
-### Create a service
-
-### List services
-
-### Get a service
-
-### Update service
-
-### Delete service