Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a cosmos feed and fixing absolute img assets #226

Merged
merged 11 commits into from
Sep 28, 2023
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ gem "html-proofer"
gem "webrick", "~> 1.8"

group :jekyll_plugins do
gem "jekyll-feed", git: "https://github.com/hyphacoop/jekyll-feed"
end
gem "jekyll-feed",
git: "https://github.com/hyphacoop/jekyll-feed",
ref: "8837225f79a4464cc3b936a1365130aa6db65180"
end
13 changes: 11 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ github: https://github.com/hyphacoop
linkedin: https://www.linkedin.com/company/hyphacoop/
twitter: https://twitter.com/hyphacoop/
handbook: https://link.hypha.coop/handbook
rss: /feed.xml
rss: "/feed.xml"
# facebook: https://www.facebook.com/hyphacoop/
# instagram: https://instagram.com/hyphacoop/
url: "https://hypha.coop"
Expand Down Expand Up @@ -64,4 +64,13 @@ plugins: []
#- jekyll-feed

feed:
title: Dripline
title: "Hypha Worker Co-operative"
collections:
posts:
path: "feed.xml"
name: "Dripline"
description: "This is the place for our collective writing ranging from short posts, to interviews, design retrospectives, and essays. We publish on a (mostly) monthly schedule."
cosmos:
path: "cosmos.xml"
name: "Hypha Does Cosmos"
description: "Hypha writes about our work in the Cosmos ecosystem"
2 changes: 1 addition & 1 deletion _includes/sections/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<li class="pr3"><a href="{{ site.linkedin }}" class="accent link underline-hover" target="_blank" rel="noopener" data-proofer-ignore>LinkedIn</a></li>
<li class="pr3"><a href="{{ site.twitter }}" class="accent link underline-hover" target="_blank" rel="noopener">Twitter</a></li>
<li class="pr3"><a href="{{ site.handbook }}" class="accent link underline-hover" target="_blank" rel="noopener">Handbook</a></li>
<li class="pr3"><a href="{{ site.rss }}" class="accent link underline-hover" target="_blank" rel="noopener">
<li class="pr3"><a href="{{ site.url }}{{ site.rss }}" class="accent link underline-hover" target="_blank" rel="noopener">
RSS
<img style="width:14px;" src="/assets/images/logos/rss-logo.png" alt="rss icon">
</a>
Expand Down