GitXplorerGitXplorer
c

jekyll-plugins

public
19 stars
6 forks
1 issues

Commits

List of commits on branch master.
Unverified
2b0ed3e08b3541fed9dbd9fa1c2032aba56b454b

Edited README.textile via GitHub

cchristianhellsten committed 13 years ago
Unverified
603591f42df3db60b243dd2a62aa08e425012f46

Merge pull request #1 from cz8s/master

cchristianhellsten committed 13 years ago
Unverified
528faf64609bc4186aee32476581de062619d634

fix documentation

ccz8s committed 13 years ago
Unverified
c0eea040f57d79d5cbdaaba70c22cb068492a50e

rssfeed.rb ready for usage now

ccz8s committed 13 years ago
Unverified
cc7d212c52d07451264bc5db201649190bf91e66

don't need statusnet plugin.

ccz8s committed 13 years ago
Unverified
cc0156adb7fc6e9ebd1d63f90a0caa54b1a091ac

generic rss-feed

ccz8s committed 13 years ago

README

The README file for this repository.

h1. Jekyll Plugins

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

h2. Delicious

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

h3. Usage

This will fetch the last 15 bookmarks tagged with 'design' from account 'x' and cache them for 3600 seconds:


    {% delicious username:x tag:design count:15 ttl:3600 %}
  • {{ item.title }}
  • {% enddelicious %}

h4. 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.|

h2. Author

"Christian Hellsten":http://christianhellsten.com ("Aktagon Ltd.":http://aktagon.com)

h2. RSS/Atom Feed

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

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

h4. 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|

h2. Author

"Christoph":http://www.kluenter.de