Archived
4
2

Minor changes since 2023-10-12

Dave Morriss 2024-05-22 17:34:48 +01:00
parent 0a4fea449d
commit e7de07a595
2 changed files with 6 additions and 3 deletions

@ -16,8 +16,8 @@ The query contains two CTEs (Common Table Expressions). These are a relatively n
CTEs are introduced by the `WITH` statement:
```
WITH cte_1 (CTE definition 1),
cte_2 (CTE definition 2)
WITH cte_1 AS (CTE definition 1),
cte_2 AS (CTE definition 2)
SELECT
main query;
```

@ -270,7 +270,8 @@ TBA
## 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:
- `shared-utils.tpl.html`
@ -442,6 +443,8 @@ TBA
## 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:
- `shared-utils.tpl.html`