Minor changes since 2023-10-12
parent
0a4fea449d
commit
e7de07a595
@ -16,8 +16,8 @@ The query contains two CTEs (Common Table Expressions). These are a relatively n
|
|||||||
|
|
||||||
CTEs are introduced by the `WITH` statement:
|
CTEs are introduced by the `WITH` statement:
|
||||||
```
|
```
|
||||||
WITH cte_1 (CTE definition 1),
|
WITH cte_1 AS (CTE definition 1),
|
||||||
cte_2 (CTE definition 2)
|
cte_2 AS (CTE definition 2)
|
||||||
SELECT
|
SELECT
|
||||||
main query;
|
main query;
|
||||||
```
|
```
|
||||||
|
@ -270,7 +270,8 @@ TBA
|
|||||||
|
|
||||||
## page.tpl.html
|
## page.tpl.html
|
||||||
|
|
||||||
- Provides the main HTML template into which content is inserted.
|
- Provides the main HTML template into which content is inserted. Includes the
|
||||||
|
header and footer.
|
||||||
- Uses templates:
|
- Uses templates:
|
||||||
- `shared-utils.tpl.html`
|
- `shared-utils.tpl.html`
|
||||||
|
|
||||||
@ -442,6 +443,8 @@ TBA
|
|||||||
|
|
||||||
## rss.tpl.xml
|
## rss.tpl.xml
|
||||||
|
|
||||||
|
- Produces the structure of the XML required for RSS feeds. Consists of the
|
||||||
|
`<channel>` definitions into which each `<item>` is inserted.
|
||||||
- Uses templates:
|
- Uses templates:
|
||||||
- `shared-utils.tpl.html`
|
- `shared-utils.tpl.html`
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user