Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ATL initial data load #79

Merged
merged 7 commits into from
Mar 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ This is by no means complete, but a couple things to know:
4. The `welcome.md` file needs to have a field added to its frontmatter for the alias, i.e., `aliases = ["/events/2015-chicago"]`
5. Sponsors each need a file in the data directory, as such: `data/sponsors/chef.yml`. If there is an existing sponsor and you can use it, you do not need to create the data file (or the image). If your information is different, please create a new file, such as `data/sponsors/2015chicagochef.yml`. Again, no special characters in the filename, please. (Note: there is an experimental feature for an "override" of the sponsor data; more on this feature as it is developed)
6. Put the images for your sponsors in the `/static/img/sponsors` directory. They need to be PNG files and named exactly after the name of the sponsor in your event file (and the corresponding sponsor data file), i.e., `/static/img/sponsors/chef.png`.
7. You will also want to add your event's logo to the following directory (creating the directory if necessary) `/static/img/yyyy-city/logo.png`. The file MUST be called `logo.png`.
7. You will also want to add your event's logo to the following directory (creating the directory if necessary) `/static/img/events/yyyy-city/logo.png`. The file MUST be called `logo.png`.
10 changes: 5 additions & 5 deletions content/events/2016-atlanta/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ Year ="2016"
date = "2016-03-06T21:15:25-06:00"
title = "welcome"
type = "event"
aliases = ["/events/2016-detroit"]
aliases = ["/events/2016-atlanta"]


+++

## {{< event_start >}} - {{< event_end >}}

DevOps Days is coming to XXXXXX
DevOps Days is coming to Atlanta!

<!-- <div style="text-align:center;">
<div style="text-align:center;">
{{< event_logo >}}
</div> -->
</div>

<table>
<tr>
Expand Down Expand Up @@ -49,7 +49,7 @@ DevOps Days is coming to XXXXXX
<tr>
<td></td>
<td>
{{< event_twitter devopsdayschi >}} <!-- add your twitter name here without the @ sign -->
{{< event_twitter devopsdaysatl >}} <!-- add your twitter name here without the @ sign -->
</td>
</tr>
</table>
41 changes: 32 additions & 9 deletions data/events/2016-atlanta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,51 @@ status: "current" # Options are "past" or "current".
startdate: 2016-04-26 # The start date of your event, in YYYY-MM-DD format. Leave blank if you don't have a date yet.
enddate: 2016-04-27 # The end date of your event, in YYYY-MM-DD format. Leave blank if you don't have a date yet.
cfp_date_start: 2016-04-01
cfp_date_end: 2016-06-01
cfp_date_announce: 2016-07-01
cfp_date_end: 2016-05-01
cfp_date_announce: 2016-05-07
coordinates: "30.2500, -97.7500" # The corrodinates of your venue. Get Latitude and Longitude of a Point: http://itouchmap.com/latlong.html
location: "location" # The name of your location
location: "Georgia Tech Historic Academy of Medicine" # The name of your location
navigationelements: ["welcome", "contact", "location", "program", "propose", "proposals", "registration", "conduct", "sponsor"] # List of pages you want to show up in the navigation of your page. Remove any that aren't relevent yet.
team: ["John Doe", "Jane Smith", "Sally Fields"]
team: ["Tom Hall", "John Dyer", "Ian Buchanan", "Laura Little", "Chris Corriere"]
organizer_email: "[email protected]" # Put your organizer email address here
proposal_email: "[email protected]" # Put your proposal email address here
sponsors: # List all of your sponsors here along with what level of sponsorship they have.
- id: chef
level: gold
- id: datadog
- id: pivotal
level: gold
- id: versionone
level: gold
- id: redislabs
level: gold
- id: victorops
level: gold
- id: autotrader
level: gold
- id: sumologic
level: gold
- id: mailchimp
level: silver
- id: salesforcepardot
level: bronze
- id: careerbuilder
level: bronze
- id: arresteddevops
level: community

level: media
- id: oreilly
level: media
- id: blacksintechnology
level: media
- id: upguard
level: badges
sponsor_levels: # In this section, list the level of sponsorships and the label to use.
- id: gold
label: Gold
- id: silver
label: Silver
- id: bronze
label: Bronze
- id: community
label: Community
- id: media
label: Media
- id: badges
label: Badges
3 changes: 3 additions & 0 deletions data/sponsors/autotrader.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "AutoTrader"
url: "http://www.autotrader.com"
3 changes: 3 additions & 0 deletions data/sponsors/blacksintechnology.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "Blacks in Technology"
url: "https://www.blacksintechnology.net"
3 changes: 3 additions & 0 deletions data/sponsors/careerbuilder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "CareerBuilder"
url: "http://www.careerbuilder.com"
3 changes: 3 additions & 0 deletions data/sponsors/mailchimp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "Mailchimp"
url: "http://www.mailchimp.com"
3 changes: 3 additions & 0 deletions data/sponsors/oreilly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "O'Reilly"
url: "http://www.oreilly.com"
3 changes: 3 additions & 0 deletions data/sponsors/pivotal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "Pivotal"
url: "http://www.pivotal.io"
3 changes: 3 additions & 0 deletions data/sponsors/redislabs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "RedisLabs"
url: "http://www.redis.com"
3 changes: 3 additions & 0 deletions data/sponsors/salesforcepardot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "Salesforce Pardot"
url: "http://www.twitter.com/pardoteng"
3 changes: 3 additions & 0 deletions data/sponsors/sumologic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "SumoLogic"
url: "http://www.sumologic.com"
3 changes: 3 additions & 0 deletions data/sponsors/versionone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "VersionOne"
url: "http://www.versionone.com"
3 changes: 3 additions & 0 deletions data/sponsors/victorops.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

name: "VictorOps"
url: "http://www.victorops.com"
Binary file added static/img/events/2016-atlanta/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/autotrader.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/blacksintechnology.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/careerbuilder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/mailchimp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/oreilly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/pivotal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/redislabs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/salesforcepardot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/sumologic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/upguard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/versionone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/sponsors/victorops.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.