docs: Prepare for new sub tree

See #11925
This commit is contained in:
Bjørn Erik Pedersen
2024-01-27 10:47:28 +01:00
parent 1083bf7c08
commit fc7de7136a
1157 changed files with 0 additions and 64232 deletions

View File

@@ -1,26 +0,0 @@
---
title: AllPages
description: Returns a collection of all pages in all languages.
categories: []
keywords: []
action:
related:
- methods/site/Pages
- methods/site/RegularPages
- methods/site/Sections
returnType: page.Pages
signatures: [SITE.AllPages]
---
This method returns all page [kinds] in all languages. That includes the home page, section pages, taxonomy pages, term pages, and regular pages.
In most cases you should use the [`RegularPages`] method instead.
[`RegularPages`]: methods/site/regularpages
[kinds]: /getting-started/glossary/#page-kind
```go-html-template
{{ range .Site.AllPages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
```