Skip to content

Commit f339cf4

Browse files
committed
Update seo metadata and add RSS Feeds page
1 parent ae9eae3 commit f339cf4

5 files changed

Lines changed: 42 additions & 7 deletions

File tree

‎_config.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ theme: minima
3535
plugins:
3636
- jekyll-feed
3737
- jekyll-sitemap
38-
rss: rss
38+
rss: RSS Feeds
3939
feed:
4040
posts_limit: 10000
4141
collections:

‎_includes/social.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
{%- if site.tinyletter_username -%}<li><a href="https://tinyletter.com/{{ site.tinyletter_username | cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/tinyletter-icon.svg#theicon' | relative_url }}"></use></svg> <span class="username" style="font-style: italic; font-family: Georgia, Times, serif;">TinyLetter</span></a></li>{%- endif -%}
33
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">GitHub</span></a></li>{%- endif -%}
44
{%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg> <span class="username">Twitter</span></a></li>{%- endif -%}
5-
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
5+
{%- if site.rss -%}<li><a href="{{ 'feed' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
66
</ul>

‎blog.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ big_image: "https://upload.wikimedia.org/wikipedia/commons/b/b2/High_Tap.jpg"
1313
banner_info: <a href="https://commons.wikimedia.org/wiki/File:High_Tap.jpg">Rod Waddington</a>, <a href="https://creativecommons.org/licenses/by-sa/2.0">CC BY-SA 2.0</a>
1414
---
1515

16-
The University is still a work in progress.[^drive] As it continues to expand, the University's monthly Newsletter marks the arrival of new [courses]({% link courses.md %}) and the best new [content]({% link library.md %}).[^changes] To hear about the latest, subscribe to the [atom (rss) feed]({% link feed.xml %}) or [emails](https://tinyletter.com/buddhist-uni){:target="_blank" ga-event-value="0.4"}:
16+
The University is still a work in progress.[^drive] As it continues to expand, the University's monthly Newsletter marks the arrival of new [courses]({% link courses.md %}) and the best new [content]({% link library.md %}).[^changes] To hear about the latest, subscribe to one of our [atom (rss) feeds](/feed) or to our [emails](https://tinyletter.com/buddhist-uni){:target="_blank" ga-event-value="0.4"}:
1717

1818
<form style="margin-bottom:23px;border:1px solid #ccc;padding:3px;text-align:center;" action="https://tinyletter.com/buddhist-uni" method="post" target="popupwindow" onsubmit="ga('send', {hitType: 'event', eventCategory: 'Newsletter', eventAction: 'subscribe', eventLabel: 'blogEmbed'}); window.open('https://tinyletter.com/buddhist-uni', 'popupwindow', 'scrollbars=yes,width=800,height=600');return true"><p><label for="tlemail">Enter your email address below to subscribe:</label></p><p><input type="text" style="min-width:50%" name="email" id="tlemail" /></p><input type="hidden" value="1" name="embed"/><input type="submit" value="Subscribe" /><p><a href="https://tinyletter.com/buddhist-uni" target="_blank">powered by TinyLetter</a></p></form>
1919

‎feed.md‎

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: RSS Feeds
3+
section: blog
4+
permalink: /feed
5+
image: https://illeakyw.sirv.com/Images/banners/origami.jpg
6+
sirv_options: blur=2
7+
big_image: https://upload.wikimedia.org/wikipedia/commons/8/8f/Origami_%2813777498043%29.jpg
8+
image_width: 1280
9+
image_height: 853
10+
banner_info: <a href="https://commons.wikimedia.org/wiki/File:Origami_(13777498043).jpg">Helgi Halldórsson</a>, <a href="https://creativecommons.org/licenses/by/2.0">CC BY 2.0</a>
11+
---
12+
13+
RSS is a web technology that allows you to get notified when content is added to your favorite websites.
14+
Below you'll find all of our RSS Feeds:
15+
16+
## Blog Posts
17+
18+
| The Newsletter | [{{ "/feed.xml" | absolute_url }}](/feed.xml) |
19+
20+
## Library Content
21+
22+
| All Library Content | [{{ "/feed/content.xml" | absolute_url }}](/feed/content.xml) |
23+
24+
### By Topic
25+
26+
| Buddhism (General) | [{{ "/feed/content/buddhism.xml" | absolute_url }}](/feed/content/buddhism.xml) |
27+
{% for tag in site.tags %}{% if tag.slug == "buddhism" %}{% continue %}{% endif %}| {{ tag.title }} | [{{ "/feed/content/" | append: tag.slug | append: ".xml" | absolute_url }}](/feed/content/{{ tag.slug }}.xml) |
28+
{% endfor %}
29+
30+
### By Type
31+
32+
{% for cat in site.categories %}{% if cat.slug == "index" %}{% continue %}{% endif %}| {{ cat.title }} | [{{ "/feed/content/" | append: cat.slug | append: ".xml" | absolute_url }}](/feed/content/{{ cat.slug }}.xml) |
33+
{% endfor %}
34+

‎highlights.html‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
title: Highlights
33
section: library
44
permalink: /library/highlights
5-
image: https://illeakyw.sirv.com/Images/banners/origami.jpg
6-
sirv_options: blur=1
7-
big_image: https://upload.wikimedia.org/wikipedia/commons/8/8f/Origami_%2813777498043%29.jpg
5+
image: https://illeakyw.sirv.com/Images/banners/Kyoto-temple.jpg
6+
big_image: https://upload.wikimedia.org/wikipedia/commons/3/3d/Nanzen-ji%2C_a_Zen_Buddhist_temple%2C_and_its_surroundings%2C_Kyoto%3B_November_2016_%2801%29.jpg
87
image_width: 1280
8+
image_center_y: 53%
9+
image_center_x: 50%
910
image_height: 853
10-
banner_info: <a href="https://commons.wikimedia.org/wiki/File:Origami_(13777498043).jpg">Helgi Halldórsson</a>, <a href="https://creativecommons.org/licenses/by/2.0">CC BY 2.0</a>
11+
banner_info: <a href="https://commons.wikimedia.org/wiki/File:Nanzen-ji,_a_Zen_Buddhist_temple,_and_its_surroundings,_Kyoto;_November_2016_(01).jpg">雷太</a>, <a href="https://creativecommons.org/licenses/by/2.0">CC BY 2.0</a>
1112
---
1213

1314
<h4>Content published in:</h4>

0 commit comments

Comments
 (0)