Skip to content

Commit

Permalink
Merge pull request #23 from TranscendOfSypherus/patch-1
Browse files Browse the repository at this point in the history
Example project missing October from Date to Month name translations causes regeneration to fail
  • Loading branch information
jeremyfa committed Jul 2, 2015
2 parents 6ea2b51 + ee207eb commit 73d4638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/blog/src/layouts/article.html.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: page
###

months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'NOV', 'DEC']
months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']

article '.post', ->

Expand Down
2 changes: 1 addition & 1 deletion examples/blog/src/layouts/home.html.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: page
###

months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'NOV', 'DEC']
months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']

for item in @getArticles()

Expand Down

0 comments on commit 73d4638

Please sign in to comment.