Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-02 | Update example blog to Hugo v0.12 conventions | Anthony 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-02 | Fixing typo in ordering.md fixed #401 | spf13 | |
2014-09-01 | Bumping Versionv0.12 | spf13 | |
2014-09-01 | Adding V0.12 release notes | spf13 | |
2014-09-01 | Adding a bunch of new quotes to the front page and switching to Owl Carousel | spf13 | |
2014-09-01 | Fix loading of Lato font in style.css for docs | Anthony 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-01 | Minor proofreading corrections to Hugo docs | Anthony Fok | |
2014-08-30 | Use typographic quote chars in the carousel quotes section | Dato Simó | |
At big font sizes, quotes really become more beautiful with them. | |||
2014-08-30 | Enable header id blackfriday extension | Dave Johnston | |
2014-08-30 | quickstart.md: Put long options inside backticks | Anthony Fok | |
Also minor adjustment to blank lines. | |||
2014-08-30 | Adjusting the number of go routines to build the pages in to 4*GOMAXPROCS ↵ | spf13 | |
(from 2) for faster rendering. | |||
2014-08-30 | Fix CreatePages | Nate 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-30 | Adding documentation about 'where' and cleaning up docs around first. | spf13 | |
2014-08-30 | Added more examples and cleaned up the GroupBy functionality documentation | spf13 | |
2014-08-29 | Making direction optional (and setting defaults) for GroupBy Pages ↵ | spf13 | |
functionality. | |||
2014-08-29 | Adding .Reverse() to PagesGroup | spf13 | |
2014-08-29 | Switch .Data to .Pages in the PageGroup functionality for increased consistency. | spf13 | |
2014-08-29 | Making the term "Term" more consistent with Taxonomy usage. | spf13 | |
2014-08-29 | Making the Pages Sorting methods available within a taxonomy term. | spf13 | |
2014-08-29 | Adding a page listing the different methods available to Taxonomies. | spf13 | |
2014-08-29 | More taxonomy examples in templates. | spf13 | |
2014-08-29 | Fixing the taxonomy example. Fixed #318. | spf13 | |
2014-08-28 | Be more specific about .Params content | Jakub Turski | |
I'm not sure whether this is *always* the case, but it's definitely have been my experience so far. :) | |||
2014-08-28 | Shortcodes are content files specific. | Jakub Turski | |
This fixes spf13/hugo#440. | |||
2014-08-28 | Add document about page grouping functions | Tatsushi Demachi | |
2014-08-28 | Inner Shortcodes now treated as markdown. fixed #185 | spf13 | |
2014-08-27 | More press additions | spf13 | |
2014-08-26 | Compressed showcase thumbnails further | spf13 | |
2014-08-26 | Added ucsb to showcase | spf13 | |
2014-08-26 | More Press | spf13 | |
2014-08-26 | fixed #389 . Added alias for missing page. | spf13 | |
2014-08-26 | small tweaks to the hover effect | spf13 | |
2014-08-26 | Creating a showcase archetype to make for easier showcase additions | spf13 | |
2014-08-26 | Adding a bunch of new sites to the showcase | spf13 | |
2014-08-26 | Adding a bunch of new press to the Press page. | spf13 | |
2014-08-25 | Prettier link hover state | spf13 | |
2014-08-25 | Bumping Travis to test Go 1.2 & tip (1.3) | spf13 | |
2014-08-25 | Fixing a broken link in the docs | spf13 | |
2014-08-25 | LiveReloadDisabled works with Watching properly. Fixed #335. | spf13 | |
2014-08-25 | go fmt site.go | spf13 | |
2014-08-25 | Fix #302. Links now have trailing slashes. | spf13 | |
2014-08-25 | Support 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-25 | added 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-25 | preserve alias case while lowercasing taxonomy | Joel Scoble | |
2014-08-25 | Update 404 to be compiled to .html instead of directory | Chase Adams | |
2014-08-25 | Add page grouping functions | Tatsushi Demachi | |
2014-08-20 | Add link for learning more about static directory | Chase Adams | |
2014-08-20 | support for futre/draft summary info output | Joel Scoble | |
2014-08-20 | Making the links stand out more | spf13 | |
2014-08-20 | Cleaning up a ton of CSS.. Removing unused selectors. Eliminated over 80% of ↵ | spf13 | |
CSS. Upgrading jQuery & FA |