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

remove the countdown and leave room to add code for the backend to enable it #105

Merged
merged 1 commit into from
Jun 18, 2017
Merged
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
8 changes: 5 additions & 3 deletions pybay/templates/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
<img alt="logo" class="logo" src="{% static 'new/img/PB_PNG.png' %}">
<span class="uppercase text-white">August 10th to 13th - San Francisco, California</span>
<span class="large-h1 video-tagline">Bringing together Python's most forward-thinking developers</span>
<span class="video-moreinfo">Call for proposals closes in</span>
<div class="video-moreinfo countdown" data-date="2017, 06, 17, 23:59"></div>
<span class="video-moreinfo"><a class="btn" href="/cfp">Submit your talk proposal now</a></span>
{% if countdown %}
<span class="video-moreinfo">{{ countdown.text }}</span>
<div class="video-moreinfo countdown" data-date="{{ countdown.date }} "></div>
<span class="video-moreinfo"><a class="btn" href="{{ countdown.link }}">{{ countdown.cta }}</a></span>
{% endif %}
</div>
</div><!--end of row-->
</div><!--end of container-->
Expand Down