To install the plugins simply put them in a folder named _plugins in your project directory.
This Jekyll plugin is used for fetching and rendering bookmarks from delicious.com.
This will fetch the last 15 bookmarks tagged with ‘design’ from account ‘x’ and cache them for 3600 seconds:
<ul class="delicious-links">
{% delicious username:x tag:design count:15 ttl:3600 %}
<li><a href="{{ item.link }}" title="{{ item.description }}" rel="external">{{ item.title }}</a></li>
{% enddelicious %}
</ul>
Name | Description | Example |
username | delicious username | jebus |
tag | delicious tag(s), separated by + | design, or design+tosite to fetch bookmarks tagged both design and tosite. |
count | Number of boomkarks to fetch | 15 |
ttl | The number of seconds the feed is cached | 3600 caches the feed for one hour. Leave empty to always fetch feed. |
Christian Hellsten (Aktagon Ltd.)
This Jekyll plugin is used for fetching and rendering RSS and Atom feeds.
This will fetch the last 15 entries and cache them for 3600 seconds:
{% rssfeed url:https://github.com/cz8s.atom count:15 ttl:3600 %}
{{ item.link }}
{{ item.day }}
{{ item.description }}
{% endstatusnet %}
Name | Description | Example |
url | Feed URL | https://github.com/cz8s.atom |
count | Number of entries to show | 15 |
ttl | The number of seconds the feed is cached 3600 caches the feed for one hour. Leave empty to always fetch feed. | 3600 |