Skip to content

Commit

Permalink
Merge pull request #59 from devopsdays/hugo-0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstratton committed Nov 28, 2015
2 parents 268f409 + a4849e4 commit 0b87819
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is the website for DevOpsDays.org

Here are the steps to follow to get going as an DevOpsDays content contributor (or heck, even a code contributor)

1. Install [Hugo](http://gohugo.io)
1. Install [Hugo v0.15+](http://gohugo.io)
2. Fork this repo
3. If you want to fire up a local copy to see your changes as you go, enter this command `hugo server -w --baseUrl="http://localhost:1313"`
4. The `--baseUrl` flag is kind of flaky, so a good solution is to change the `config.toml` file to point to `localhost` before starting `hugo server -w`. DO NOT COMMIT THIS CHANGED FILE BACK TO GITHUB. Just exclude it for now. We don't add it to `.gitignore` because we might need to muck with that file...although once everything is stable we might do this for safety.
Expand Down
7 changes: 1 addition & 6 deletions themes/devopsdays/layouts/partials/maps.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,7 @@
var markers = [
{{ range $.Site.Data.events }}
{{ if eq .status "current" }}
['Denver: April 21 & 22', 39.739236, -104.990251],
['Minneapolis: Jul 20 & 21', 44.9726428,-93.2752562],
['Warsaw: Nov 24 & 25', 52.1800879, 20.9788363],
['Washington D.C.: June 8 & 9', 38.8011545,-77.0659376],
['Kiel: May 12 & 13', 54.34208,10.121949],
['Seattle: May 12 & 13', 47.609895, -122.330259],
['{{ .city}}', {{ .coordinates | safeJS }}],
{{ end }}
{{ end }}
];
Expand Down
2 changes: 1 addition & 1 deletion wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ box: wercker/default
build:
steps:
- arjen/hugo-build:
version: "0.14"
version: "0.15"
theme: devopsdays
flags: --buildDrafts=true

Expand Down

0 comments on commit 0b87819

Please sign in to comment.