Some tweaks
This commit is contained in:
parent
93b3b9f9ff
commit
c04e6ebaf5
|
@ -18,9 +18,6 @@
|
||||||
- Add `updated` front-matter field for pages, which sitemap templates will use for the `SitemapEntry.date` field instead of the `date` front-matter field, and which the default Atom feed template will use
|
- Add `updated` front-matter field for pages, which sitemap templates will use for the `SitemapEntry.date` field instead of the `date` front-matter field, and which the default Atom feed template will use
|
||||||
- Add `lang` to the feed template context
|
- Add `lang` to the feed template context
|
||||||
- Add `taxonomy` and `term` to the feed template context for taxonomy feeds
|
- Add `taxonomy` and `term` to the feed template context for taxonomy feeds
|
||||||
|
|
||||||
## 0.10.2 (unreleased)
|
|
||||||
|
|
||||||
- Fix link checker not looking for anchor with capital id/name
|
- Fix link checker not looking for anchor with capital id/name
|
||||||
- Pass missing `lang` template parameter to taxonomy list template
|
- Pass missing `lang` template parameter to taxonomy list template
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,7 @@
|
||||||
<updated>{{ last_updated | date(format="%+") }}</updated>
|
<updated>{{ last_updated | date(format="%+") }}</updated>
|
||||||
<id>{{ feed_url | safe }}</id>
|
<id>{{ feed_url | safe }}</id>
|
||||||
{%- for page in pages %}
|
{%- for page in pages %}
|
||||||
<entry
|
<entry xml:lang="{{ page.lang }}">
|
||||||
{%- if page.lang != lang %} xml:lang="{{ page.lang }}"{% endif -%}
|
|
||||||
>
|
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }}</title>
|
||||||
<published>{{ page.date | date(format="%+") }}</published>
|
<published>{{ page.date | date(format="%+") }}</published>
|
||||||
<updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated>
|
<updated>{{ page.updated | default(value=page.date) | date(format="%+") }}</updated>
|
||||||
|
|
|
@ -13,7 +13,7 @@ A taxonomy has five variables:
|
||||||
- `paginate_by`: if this is set to a number, each term page will be paginated by this much.
|
- `paginate_by`: if this is set to a number, each term page will be paginated by this much.
|
||||||
- `paginate_path`: if set, this path will be used by the paginated page and the page number will be appended after it.
|
- `paginate_path`: if set, this path will be used by the paginated page and the page number will be appended after it.
|
||||||
For example the default would be page/1.
|
For example the default would be page/1.
|
||||||
- `feed`: if set to `true`, a feed will be generated for each term.
|
- `feed`: if set to `true`, a feed (atom by default) will be generated for each term.
|
||||||
- `lang`: only set this if you are making a multilingual site and want to indicate which language this taxonomy is for
|
- `lang`: only set this if you are making a multilingual site and want to indicate which language this taxonomy is for
|
||||||
|
|
||||||
**Example 1:** (one language)
|
**Example 1:** (one language)
|
||||||
|
|
Loading…
Reference in a new issue