summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-09-02Update example blog to Hugo v0.12 conventionsAnthony Fok
- Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1)
2014-09-02Fixing typo in ordering.md fixed #401spf13
2014-09-01Bumping Versionv0.12spf13
2014-09-01Adding V0.12 release notesspf13
2014-09-01Adding a bunch of new quotes to the front page and switching to Owl Carouselspf13
2014-09-01Fix loading of Lato font in style.css for docsAnthony Fok
The "@import url()" statement for loading Lato from Google Fonts was ignored because "@import are not allowed after any valid statement other than @charset and @import" according to the W3C CSS Validator. Also remove the line for importing line-icons.css which no longer exists.
2014-09-01Minor proofreading corrections to Hugo docsAnthony Fok
2014-08-30Use typographic quote chars in the carousel quotes sectionDato Simó
At big font sizes, quotes really become more beautiful with them.
2014-08-30Enable header id blackfriday extensionDave Johnston
2014-08-30quickstart.md: Put long options inside backticksAnthony Fok
Also minor adjustment to blank lines.
2014-08-30Adjusting the number of go routines to build the pages in to 4*GOMAXPROCS ↵spf13
(from 2) for faster rendering.
2014-08-30Fix CreatePagesNate Finch
This fixes #450. There are two problems: 1.) We're creating a new goroutine for every page. 2.) We're calling s.Pages = append(s.Pages, page) inside each goroutine. 1 is a problem if in that if you have a ton of pages, that's a ton of goroutines. It's not really useful to have more than a few goroutines at a time, and lots can actually make your code much slower, and, evidently, crash. 2 is a problem in that append is not thread safe. Sometimes it returns a new slice with a larger capacity, when the original slice isn't large enough. This can cause problems if two goroutines do this at the same time. The solution for 1 is to use a limited number of workers (I chose 2*GOMAXPROCS as a nice guess). The solution for 2 is to serialize access to s.Pages, which I did by doing it in a single goroutine.
2014-08-30Adding documentation about 'where' and cleaning up docs around first.spf13
2014-08-30Added more examples and cleaned up the GroupBy functionality documentationspf13
2014-08-29Making direction optional (and setting defaults) for GroupBy Pages ↵spf13
functionality.
2014-08-29Adding .Reverse() to PagesGroupspf13
2014-08-29Switch .Data to .Pages in the PageGroup functionality for increased consistency.spf13
2014-08-29Making the term "Term" more consistent with Taxonomy usage.spf13
2014-08-29Making the Pages Sorting methods available within a taxonomy term.spf13
2014-08-29Adding a page listing the different methods available to Taxonomies.spf13
2014-08-29More taxonomy examples in templates.spf13
2014-08-29Fixing the taxonomy example. Fixed #318.spf13
2014-08-28Be more specific about .Params contentJakub Turski
I'm not sure whether this is *always* the case, but it's definitely have been my experience so far. :)
2014-08-28Shortcodes are content files specific.Jakub Turski
This fixes spf13/hugo#440.
2014-08-28Add document about page grouping functionsTatsushi Demachi
2014-08-28Inner Shortcodes now treated as markdown. fixed #185spf13
2014-08-27More press additionsspf13
2014-08-26Compressed showcase thumbnails furtherspf13
2014-08-26Added ucsb to showcasespf13
2014-08-26More Pressspf13
2014-08-26fixed #389 . Added alias for missing page.spf13
2014-08-26small tweaks to the hover effectspf13
2014-08-26Creating a showcase archetype to make for easier showcase additionsspf13
2014-08-26Adding a bunch of new sites to the showcasespf13
2014-08-26Adding a bunch of new press to the Press page.spf13
2014-08-25Prettier link hover statespf13
2014-08-25Bumping Travis to test Go 1.2 & tip (1.3)spf13
2014-08-25Fixing a broken link in the docsspf13
2014-08-25LiveReloadDisabled works with Watching properly. Fixed #335.spf13
2014-08-25go fmt site.gospf13
2014-08-25Fix #302. Links now have trailing slashes.spf13
2014-08-25Support subdir in baseurl.Nate Finch
Mainly this was a change to helpers.MakePermalink, but to get the local server to run correctly, we needed to redirect the path of the request from /foo to /. In addition, I added tests for the server's code for fixing up the base url with different config file & CLI options.
2014-08-25added functionality to check the error message returned from Cobra, if any. ↵Joel Scoble
for uage message text. If its present, the usage message gets truncated and the resulting message is returned to be used for the rest of the error message. If the resulting error is blank, no error message is printed
2014-08-25preserve alias case while lowercasing taxonomyJoel Scoble
2014-08-25Update 404 to be compiled to .html instead of directoryChase Adams
2014-08-25Add page grouping functionsTatsushi Demachi
2014-08-20Add link for learning more about static directoryChase Adams
2014-08-20support for futre/draft summary info outputJoel Scoble
2014-08-20Making the links stand out morespf13
2014-08-20Cleaning up a ton of CSS.. Removing unused selectors. Eliminated over 80% of ↵spf13
CSS. Upgrading jQuery & FA