-
Notifications
You must be signed in to change notification settings - Fork 670
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
Ohio 2016: Starting. Supporting "false" for TBD #166
Conversation
Can you pull out the "false" thing? I added a fix this morning that fits with some other uses. See #170 |
Let me rephase - can you pull down what I just pushed earlier today, merge it in with your changes if needed? I didn't get a chance to see everything you implemented your addition in Future works well. |
Will do. Thanks. |
# Conflicts: # themes/devopsdays-legacy/layouts/partials/map.html
@mattstratton I've updated based on your suggestions. Thanks! |
@@ -0,0 +1,16 @@ | |||
+++ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this file if you like. We aren't going to support showing under-review proposals.
I pulled this branch and it didn't build locally for me. Deferring to @mattstratton. |
@@ -2,7 +2,7 @@ | |||
{{ $event_slug := index $path 1 }} | |||
{{ $e := (index .Page.Site.Data.events $event_slug) }} | |||
|
|||
{{ if isset $e "cfp_date_start" }} | |||
{{ if ($e.cfp_date_start) }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull this out for now as it's not building for our tests - it works correctly on our test stuff. If you want to hack at it again, let's do a separate PR for it (vs the content you're adding)
This is the initial creation of the pages for Ohio 2016.
** I updated this since "isset" was being called after using the variable, making the existing check impossible to utilize.