-
Notifications
You must be signed in to change notification settings - Fork 991
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
title = "A post with tags" | ||
description = "" | ||
date = 2023-07-29 | ||
|
||
[taxonomies] | ||
tags = ["foo tag", "bar tag"] | ||
+++ | ||
|
||
This post has a `tags` taxonomy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "atom.xml" %} | ||
|
||
{% block atom_entry_extra %} | ||
|
||
{%- if page.taxonomies and page.taxonomies.tags %} | ||
{%- for tag in page.taxonomies.tags %} | ||
<category term="{{ tag }}/"> | ||
{% endfor -%} | ||
{% endif -%} | ||
|
||
{% endblock atom_entry_extra %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "rss.xml" %} | ||
|
||
{% block rss_item_extra %} | ||
|
||
{%- if page.taxonomies and page.taxonomies.tags %} | ||
{%- for tag in page.taxonomies.tags %} | ||
<category>{{ tag }}</category> | ||
{% enfor -%} | ||
{% endif -%} | ||
|
||
{% endblock rss_item_extra %} |