This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Favicons and touch icons --> | |
| <!-- For retina-display iPads --> | |
| <link href="/assets/images/apple-touch-icon-xlarge.png" rel="apple-touch-icon-precomposed" sizes="144x144" type="image/png"/> | |
| <!-- For retina-display iPhones --> | |
| <link href="/assets/images/apple-touch-icon-large.png" rel="apple-touch-icon-precomposed" sizes="114x114" type="image/png"/> | |
| <!-- For iPad 1 --> | |
| <link href="/assets/images/apple-touch-icon-medium.png" rel="apple-touch-icon-precomposed" sizes="72x72" type="image/png"/> | |
| <!-- For iPhone 3G, iPod Touch and Android --> | |
| <link href="/assets/images/apple-touch-icon-small.png" rel="apple-touch-icon-precomposed" type="image/png"/> | |
| <!-- For Nokia --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hardstatus alwayslastline | |
| hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR} (%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}][%{Y}%l%{g}] %{=b C}[ %m/%d %c ]%{W}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim: ft=sh:ts=4:sw=4:autoindent:expandtab: | |
| # Author: Avishai Ish-Shalom <avishai@fewbytes.com> | |
| # We need to specify GNU sed for OS X, BSDs, etc. | |
| if [[ "$(uname -s)" == "Darwin" ]]; then | |
| SED=gsed | |
| else | |
| SED=sed | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A quick and dirty plugin for Jekyll by Eli Naeher | |
| # | |
| # This plugin creates a site.years template variable which allow you to group archive links by year and month. | |
| # The structure of site.years is: | |
| # site.years = 2001=>[[post1, post2...], [...]], 2002=>[...] | |
| # | |
| # Usage should look something like this: | |
| # {% for year in site.years %} | |
| # <h2>Year {{ year.first.first.date | date: "%Y" }}</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim: ft=sh:ts=4:sw=4:autoindent:expandtab: | |
| # Author: Avishai Ish-Shalom <avishai@fewbytes.com> | |
| # We need to specify GNU sed for OS X, BSDs, etc. | |
| if [[ "$(uname -s)" == "Darwin" ]]; then | |
| SED=gsed | |
| else | |
| SED=sed | |
| fi |
NewerOlder