Skip to content
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.

christianhellsten/jekyll-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Jekyll Plugins

To install the plugins simply put them in a folder named _plugins in your project directory.

Delicious

This Jekyll plugin is used for fetching and rendering bookmarks from delicious.com.

Usage

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>

Parameters

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.

Author

Christian Hellsten (Aktagon Ltd.)

RSS/Atom Feed

This Jekyll plugin is used for fetching and rendering RSS and Atom feeds.

Usage

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 %}

Parameters

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

Author

Christoph

About

A set of Jekyll plugins

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages