Skip to content

Commit

Permalink
Add contact page
Browse files Browse the repository at this point in the history
Also includes partials for twitter and a "page" setup. Fixes #18
  • Loading branch information
mattstratton committed Nov 22, 2015
1 parent fa45ecd commit 5384471
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 4 deletions.
5 changes: 5 additions & 0 deletions archetypes/page.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
Description = ""
Tags = []
Categories = []
+++
3 changes: 3 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ canonifyurls = false
dataDir = "data"
archetypedir = "archetypes"

[permalinks]
page = "/:filename/"

[params]
Facebook = "//www.facebook.com/group.php?gid=106761636771"
GATracker = ""
Expand Down
34 changes: 34 additions & 0 deletions content/page/contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
+++
Categories = []
Description = ""
Tags = []
date = "2015-11-22T00:34:27-06:00"
title = "Contact devopsdays"

+++

# Contact devopsdays

The devopsdays global core team helps local organizers host their own devopsdays events worldwide. The core team consists of the following people:

- Patrick Debois
- John Willis
- Damon Edwards
- Kris Buytaert
- John Vincent
- Andrew Shafer
- Lindsay Holmwood
- Stephen Nelson-Smith
- Christian Trabold
- James Wickett
- Anthony Goddard
- Bernd Erk (January 2015-present)
- Bridget Kromhout (January - 2015-present)
- Jennifer Davis (November 2015-present)

Organization is decentralized, so each individual event handles their own sponsorships, registration, and so forth. For questions about a specific event you see listed on the site, please contact the organizers for that event.

If you have other questions (such as inquiries about hosting your own event or about potential future events you don't see on the site), the core organizers are happy to hear from you:

- Email: [[email protected]](mailto:[email protected])
- Twitter: [@devopsdays](https://twitter.com/devopsdays)
11 changes: 10 additions & 1 deletion themes/devopsdays/layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{{ partial "header.html" . }}
{{ .Content }}
<div class = "container-fluid">
<div class = "row">
<div class="col-md-8">
{{ .Content }}
</div>
<div class = "col-md-3">
{{ partial "twitter.html" . }}
</div>
</div>
</div>

{{ partial "footer.html" . }}
3 changes: 1 addition & 2 deletions themes/devopsdays/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ <h2>Past</h2>
</ul>
</div>
<div class = "col-md-3">
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/search?q=devopsdays%20OR%20devopsday%20OR%20%23devopsday%20OR%20%23devopsdays" data-widget-id="667543157886816256">Tweets about devopsdays OR devopsday OR #devopsday OR #devopsdays</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
{{ partial "twitter.html" . }}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion themes/devopsdays/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Presentations</a></li>
<li><a href="#">Blog</a></li>
Expand Down
2 changes: 2 additions & 0 deletions themes/devopsdays/layouts/partials/twitter.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/search?q=devopsdays%20OR%20devopsday%20OR%20%23devopsday%20OR%20%23devopsdays" data-widget-id="667543157886816256">Tweets about devopsdays OR devopsday OR #devopsday OR #devopsdays</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

0 comments on commit 5384471

Please sign in to comment.