Navigation Menu

Skip to content

cz8s/jekyll-plugins

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 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.)

rssfeed

This Jekyll plugin is used for fetching and rendering rss and atom feeds

Usage

This will fetch the last 15 dents 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 where the feed is https://github.com/cz8s.atom
count Number of Posts 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

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%