Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env python | |
| ''' | |
| Send an multipart email with HTML and plain text alternatives. The message | |
| should be constructed as a plain-text file of the following format: | |
| From: Your Name <your@email.com> | |
| To: Recipient One <recipient@to.com> | |
| Subject: Your subject line | |
| --- |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # | |
| # File compressor plugin for jekyll | |
| # ================================= | |
| # | |
| # By [mytharcher](https://github.com/mytharcher) | |
| # 2012-05-20 | |
| # | |
| # Updated by [nicoespeon](https://github.com/nicoespeon) | |
| # 2013-04-12 | |
| # |
| # | |
| # Jekyll Dev Only Tag | |
| # | |
| # Author : Colin Kennedy | |
| # Usage : | |
| # | |
| # The markup/script/css included within the `devonly` tags | |
| # is included in the rendered page when either: | |
| # | |
| # * `server` mode is used |
| module Jekyll | |
| class ArchiveGenerator < Generator | |
| safe true | |
| def generate(site) | |
| collate_by_month(site.posts).each do |month, posts| | |
| page = ArchivePage.new(site, month, posts) | |
| site.pages << page | |
| end | |
| end |