diff options
author | HombreLaser <sebastian-440@live.com> | 2023-09-12 16:17:29 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-09-12 16:17:29 -0600 |
commit | e782c39d0539bc552ba1008157e87c696bd67266 (patch) | |
tree | 7f83db91fe8b898dd5a63d1e5fc103ece9339e25 | |
parent | 6406268d875bf5f6e12d1dfba69ea7ffe1047c32 (diff) |
Add rss feed generation
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | _includes/header.html | 5 | ||||
-rw-r--r-- | assets/images/rss_feed_icon.svg | 16 |
3 files changed, 22 insertions, 1 deletions
diff --git a/_config.yml b/_config.yml index 0e56b30..781e7b2 100644 --- a/_config.yml +++ b/_config.yml @@ -4,7 +4,7 @@ name: Silos Needed description: Intereses varios # url is currently only used only for the RSS feed in feed.xml -url: https://scotte.github.io/jekyll-clean +url: https://silosneeded.com # baseurl will often be '', but for a project page on gh-pages, it needs to # be the project name. diff --git a/_includes/header.html b/_includes/header.html index b1448fe..c56a7d6 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -46,6 +46,11 @@ <li><a href="{{ english_site }}">English</a></li> </ul> </li> + <li> + <a href="{{ site.baseurl }}/feed.xml"> + <img src="{{ site.baseurl }}/assets/images/rss_feed_icon.svg" width="18" height="18"> + </a> + </li> </ul> </div> </div> diff --git a/assets/images/rss_feed_icon.svg b/assets/images/rss_feed_icon.svg new file mode 100644 index 0000000..e48c54f --- /dev/null +++ b/assets/images/rss_feed_icon.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" id="RSSicon" viewBox="0 0 8 8" width="256" height="256"> + + <title>RSS feed icon</title> + + <style type="text/css"> + .button {stroke: none; fill: orange;} + .symbol {stroke: none; fill: white;} + </style> + + <rect class="button" width="8" height="8" rx="1.5"/> + <circle class="symbol" cx="2" cy="6" r="1"/> + <path class="symbol" d="m 1,4 a 3,3 0 0 1 3,3 h 1 a 4,4 0 0 0 -4,-4 z"/> + <path class="symbol" d="m 1,2 a 5,5 0 0 1 5,5 h 1 a 6,6 0 0 0 -6,-6 z"/> + +</svg>
\ No newline at end of file |