aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/content-management/_common/page-kinds.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/content-management/_common/page-kinds.md')
-rw-r--r--docs/content/en/content-management/_common/page-kinds.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/content/en/content-management/_common/page-kinds.md b/docs/content/en/content-management/_common/page-kinds.md
deleted file mode 100644
index 07a53e8e6..000000000
--- a/docs/content/en/content-management/_common/page-kinds.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-# Do not remove front matter.
----
-
-| Kind | Description | Example |
-|----------------|--------------------------------------------------------------------|-------------------------------------------------------------------------------|
-| `home` | The landing page for the home page | `/index.html` |
-| `page` | The landing page for a given page | `my-post` page (`/posts/my-post/index.html`) |
-| `section` | The landing page of a given section | `posts` section (`/posts/index.html`) |
-| `taxonomy` | The landing page for a taxonomy | `tags` taxonomy (`/tags/index.html`) |
-| `term` | The landing page for one taxonomy's term | term `awesome` in `tags` taxonomy (`/tags/awesome/index.html`) |
-
-Four other page kinds unrelated to content are `robotsTXT`, `RSS`, `sitemap`, and `404`. Although primarily for internal use, you can specify the name when disabling one or more page kinds on your site. For example:
-
-{{< code-toggle file=hugo >}}
-disableKinds = ['robotsTXT','404']
-{{< /code-toggle >}}