Skip to content

Commit

Permalink
Add RSS feed button
Browse files Browse the repository at this point in the history
  • Loading branch information
ysthakur committed Oct 22, 2023
1 parent 5781a90 commit 7d061a9
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ source "https://rubygems.org"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "academic-jekyll-theme", "~> 1.0"

gem 'jekyll-feed'

gem "jekyll", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
Expand Down
3 changes: 3 additions & 0 deletions Gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,18 @@ data:
- name: Blog
url: /blog
social:
- icon: github
link: "https://github.com/gems-cyberlang/"
- icon: instagram
link: "https://instagram.com/cyb3rl4ng?igshid=OGQ5ZDc2ODk2ZA=="
# fa-class is the Font Awesome class for the icon
- fa-class: fab fa-github
link: https://github.com/gems-cyberlang
title: CYB3RL4NG's GitHub organization
- fa-class: fab fa-instagram
link: https://instagram.com/cyb3rl4ng
title: CYB3RL4NG's Instagram
- fa-class: fa-solid fa-rss
link: /feed.xml
title: Atom (RSS-like) feed
contact:
title: Team Liaison
email: [email protected]
plugins:
- jekyll-feed
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</nav>
<div class="text-start social-media-icons">
{% for item in site.data.settings.social %}
<a href="{{ item.link }}" class="ms-3 fs-5"><i class="fab fa-{{ item.icon }}"></i></a>
<a href="{{ item.link }}" class="ms-3 fs-5"><i class="{{ item.fa-class }}" title="{{ item.title }}"></i></a>
{% endfor %}
</div>
</header>
1 change: 1 addition & 0 deletions _posts/2023-07-14-another-test.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: post
title: "Another test"
date: 2023-07-14
---

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Expand Down
1 change: 1 addition & 0 deletions _posts/2023-08-15-test.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: post
title: "Test blog post"
date: 2023-08-15
---

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Expand Down
6 changes: 6 additions & 0 deletions assets/libs/fontawesome/all.min.js

Large diffs are not rendered by default.

0 comments on commit 7d061a9

Please sign in to comment.