Skip to content

Commit

Permalink
Revert to 3 columns for events
Browse files Browse the repository at this point in the history
  • Loading branch information
amakarudze committed May 22, 2024
1 parent 494524b commit f3f8129
Showing 1 changed file with 4 additions and 22 deletions.
26 changes: 4 additions & 22 deletions templates/core/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,6 @@ <h1>{% trans "We inspire women to fall in love with programming." %}</h1>
</div>
</section>

<section id="survey">
<div class="organize">
<div class="panel row">
<div class="col-md-12">
<h2>{% trans "We are celebrating 10 years with Django Girls! 🎉" %}</h2>
<p>
{% blocktrans trimmed %}
Have you been an attendee, coach, or organizer with Django Girls? We want to hear from YOU! Thanks to PyCharm,
we put together a short survey to collect your thoughts and experiences.
Please take a moment to <a href="https://surveys.jetbrains.com/s3/w-django-girls-survey-2024">fill in our survey
here</a>. Thank you 🎈❤️!
{% endblocktrans %}
</p>
</div>
</div>
</div>
</section>

<div class="container">
<section id="about">
<div class="row">
Expand Down Expand Up @@ -118,10 +100,10 @@ <h2>
<div class="row">
{% for event in future_events %}
{% if forloop.first %}<div class="row">{% endif %}
<div class="col-md-3">
{% include 'includes/_event.html' with event=event %}</div>
{% if forloop.counter|divisibleby:4 %}</div><div class="row">{% endif %}
{% if forloop.last %}</div>{% endif %}
<div class="col-md-4">
{% include 'includes/_event.html' with event=event %}
</div>
{% if forloop.counter|divisibleby:3 %}</div><div class="row">{% endif %}
{% endfor %}
</div>
</div>
Expand Down

0 comments on commit f3f8129

Please sign in to comment.