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 9e1eb39 + 74395d8 commit 5e4ca05
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 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
2 changes: 1 addition & 1 deletion data/events/2015warsaw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ friendly: "2015-warsaw"
status: "current"
startdate: 2015-11-24
enddate: 2015-11-25
coordinates: "47.609895, -122.330259"
coordinates: "52.1800879, 20.9788363"
navigationelements: ["welcome", "location", "register", "program", "ignites", "partners", "contact", "conduct"]
sponsors:
- id: allegro
Expand Down
2 changes: 1 addition & 1 deletion data/events/2016kiel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ friendly: "2016-kiel"
status: "current"
startdate: 2016-05-12
enddate: 2016-05-13
coordinates: "47.609895, -122.330259"
coordinates: "54.3233, 10.1228"
navigationelements: ["welcome", "propose", "location", "registration", "sponsor", "contact", "conduct"]
sponsors:
- id: kiwi
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 5e4ca05

Please sign in to comment.