Skip to content
Open
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
5 changes: 0 additions & 5 deletions pyconbalkan/conference/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,4 @@ <h2>Meet our sponsors</h2>
</div>
{% endif %}

{# Buy Tickets #}
{% if request.conference.tickets %}
<div class="card"><a class="button button--yellow mb-xs-80" href="{{ request.conference.tickets }}" target="_blank" role="button">Buy Tickets</a></div>
{% endif %}

{% endblock %}
3 changes: 3 additions & 0 deletions pyconbalkan/core/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ ul li {
overflow: hidden;
}

#buy_btn_main {
padding-top: 2%;

.cfp_btn {
background-color: #ffd64f;
display: flex;
Expand Down
5 changes: 5 additions & 0 deletions pyconbalkan/core/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@

<article class="page__content">
{% block main_content %}{% endblock %}

{# Buy Tickets #}
{% if request.conference.tickets %}
<div class="card" id="buy_btn_main"><a class="button button--yellow mb-xs-80" href="{{ request.conference.tickets }}" target="_blank" role="button">Buy Tickets</a></div>
{% endif %}
</article>

<video autoplay muted loop id="bgVideo">
Expand Down