aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use the Github API repo sorting.Michael G. Schwern2013-02-181-9/+1
| | | | | | | | | | | | | The Github API can sort by pushed time, no need to do it manually. http://developer.github.com/v3/repos/#list-user-repositories This is both more efficient, Github does the sorting, but it also fixes a bug. Because the list of results are paginated, if you have more than a page's worth of repositories it will only sort that page. This results in a false view of what has been recently pushed. For a good example, try my github account "schwern" with and without this patch.
* Fixed issue with mobile nav choosing the last option by default. Fixes #950.Floyd Pink2013-02-151-0/+1
|
* fixed issue #949 using @alexkirmse's patchFloyd Pink2013-02-131-1/+1
|
* updated ender.js to latestBrandon Mathis2013-01-062-1400/+3159
|
* Escape github repo descriptions, as they may contain HTML.Thomas Rix2013-01-021-1/+4
|
* Merge pull request #537 from joseprio/masterBrandon Mathis2012-12-291-0/+7
|\ | | | | robots.txt generation
| * Added robots.txt, with sitemap linkJosep del Rio2012-04-191-0/+7
| |
* | Using https instead of protocol relative urls, for Pinboard and Twitter feedsBrandon Mathis2012-10-012-7/+7
| |
* | Twitter API call and links are now protocol relativeBrandon Mathis2012-09-291-5/+5
| |
* | Updated Github API to V3.Zhao Lü2012-09-091-1/+1
| | | | | | | | Github API V2 has been removed. The response data format also changed.
* | Updated Github API to V3.Zhao Lü2012-09-091-5/+5
| | | | | | | | Github API V2 has been removed. The response data format also changed.
* | Do not strip trailing slash of canonical URLs.OGINO Masanori2012-06-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Usually, links for posts are generated with a trailing slash, but canonical URLs aren't. Some services (e.g. http://b.hatena.ne.jp/) are confused with that behavior. We can fix it by removing canonical URLs, but then anyone may read a post with /index.html URL and post the URL to some tool or service. Therefore rel="canonical" seems useful IMHO. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
* | Don't display comments link for post excerpts on index page when comments ↵Luke Karrys2012-03-231-1/+1
|/ | | | for that post are set to false.
* Merge pull request #376 from robertkowalski/clrfBrandon Mathis2012-03-071-114/+114
|\ | | | | Fix CRLF, closes #374
| * Fix CRLF, closes #374Robert Kowalski2012-01-141-114/+114
| |
* | Merge pull request #427 from joliss/typoBrandon Mathis2012-02-191-1/+1
|\ \ | | | | | | Fix typo
| * | Fix typoJo Liss2012-02-151-1/+1
| |/
* | Github -> GitHub (capitalization)Fletcher Tomalty2012-02-191-2/+2
|/
* Fix delicious widget js errorhSATAC2011-12-211-1/+1
| | | | | JS error occured when there's no tags on bookmarks Check if it's an empty string before join item[i].t
* Search box can be toggled off.Tim Gray2011-12-111-0/+2
| | | | | | By leaving 'simple_search' parameter blank in the _config.yml file, the search form in the navigation.html include is omitted. This lets you put your own custom search form in the custom/navigation.html file.
* now mobile navigation inlcudes subscription links fixes #299Brandon Mathis2011-12-101-1/+5
|
* removed size restriction on twitter sidebar follow buttonBrandon Mathis2011-12-101-1/+1
|
* Add custom date format to pages, add 'updated' field againFrederic Hemberger2011-11-033-3/+11
| | | | Reverts changes of c2a68cc where I accidentally removed support for 'updated' field, see comments of issue #164 for details.
* Reverted commit 514e848 (issue #236), should fix Disqus identifier issues.Frederic Hemberger2011-11-011-2/+2
| | | | See also: https://github.com/imathis/octopress/wiki/Disqus-identifier-issues
* Add response check, fixes #252Frederic Hemberger2011-10-281-2/+3
|
* only include facebook js if facebook_like is trueAaron Malone2011-10-231-0/+2
|
* Improve handling of meta descriptionFrederic Hemberger2011-10-211-1/+1
|
* Use canonical URL for Disqus, fixes #236Frederic Hemberger2011-10-212-4/+3
|
* Remove unsupported 'updated' flag from _includes/post/date.htmlFrederic Hemberger2011-10-183-11/+5
| | | | | | Jekyll does not support this value for Page or Post classes. The capture returned an empty Sting, which was always evaluated to true in '{% if updated %}'.
* Make post's date output configurable via _config.yml, closes #164Frederic Hemberger2011-10-181-1/+2
| | | | | | A new config variable 'date_format' is introduced in _config.yml. It can either be set to "ordinal" to use the current format or it can be given a string complying to strftime() format identifiers.
* Moves Google Analytics to <head> allowing verification for Google Webmaster ↵Frederic Hemberger2011-10-172-1/+1
| | | | Tools, fixes #204
* Adds support for Google+ widget, supports author information in search ↵Frederic Hemberger2011-10-171-0/+11
| | | | results, fixes #203
* Removes <nav> for Pagination links, fixes #216Frederic Hemberger2011-10-171-11/+9
|
* Adds prev/next link below post, fixes #218Frederic Hemberger2011-10-161-0/+8
|
* Merge pull request #201 from mikl/category-feedsFrederic Hemberger2011-10-161-0/+27
|\ | | | | Adds per-category Atom feeds.
| * Fixed duplicate title.Mikkel Hoegh2011-10-061-1/+0
| |
| * First attempt at creating per-category Atom feeds.Mikkel Hoegh2011-10-051-0/+28
| |
* | Makes titlecase of page/post titles configurableFrederic Hemberger2011-10-162-3/+3
| |
* | Merge pull request #210 from xdworks/294accde545a7213b274c5b625b44a17ed72e0f3Frederic Hemberger2011-10-113-0/+12
|\ \ | | | | | | Facebook Like button integration, fixes #176
| * | facebook like optionxdite2011-10-093-0/+12
| | |
* | | As other things rely on these variables, they need to be global. Drew Wells2011-10-091-4/+4
|/ / | | | | | | Fixes issues with comments not loading on the blog. Semicolons non-optional due to SAFE function http://twitter.com/#!/elijahmanor/status/121980870428069890
* | Fixes delicious API url after moving from Yahoo! to AVOS, fixes #179Frederic Hemberger2011-10-061-1/+1
|/
* Adds CDATA sections to atom.xml, fixes #198Frederic Hemberger2011-10-041-7/+5
|
* Add generator tag to Atom feed.Mikkel Hoegh2011-10-041-0/+1
| | | | | generator is an optional element, but let's give credit where it's due. Besides, it can be helpful to feed consumers to know what tool generated the file.
* Proper atom feed xml escapingAleksey Gureiev2011-10-021-4/+4
|
* removed console.log from twitter.js #facepalmBrandon Mathis2011-09-291-1/+0
|
* fixed issue with expanded twitter urls, fixed issue where twitter would ↵Brandon Mathis2011-09-291-4/+8
| | | | report seven day old tweets as "false"
* updated github.js to use reqwest.js with EnderBrandon Mathis2011-09-291-10/+7
|
* added support for adding content to the bottom of a pageBrandon Mathis2011-09-293-4/+9
|
* added buffer for mentions in twitter streamBrandon Mathis2011-09-281-4/+3
|