Skip to content

Commit

Permalink
add resources
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseSilverberg committed Apr 4, 2020
1 parent 9eaab24 commit 4485afb
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
Binary file added core/static/core/pdf/coloring.pdf
Binary file not shown.
Binary file added core/static/core/pdf/crowns.pdf
Binary file not shown.
Binary file added core/static/core/pdf/wordsearch.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions core/templates/core/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@
<link rel="shortcut icon" type="image/png" href="{% static 'core/img/favicon.ico' %}"/>
</head>
<body>
<a data-toggle="modal" data-target="#covid" class="d-block p-3 text-center text-white bg-danger b4b">CANCELLED: SEE OUR COVID-19 UPDATE</a>
<a data-toggle="modal" data-target="#covid" class="d-block p-3 text-center text-white bg-danger b4b">{% trans "CANCELLED: SEE OUR COVID-19 UPDATE"%}</a>
<div class="modal fade" tabindex="-1" role="dialog" id="covid">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title font-weight-bold">COVID-19 Update</h1>
<h1 class="modal-title font-weight-bold">{% trans "COVID-19 Update"%}</h1>
</div>
<div class="modal-body">
<p class="lead">Due to Covid-19, and the closing of MCPS schools, Peter and the Wolf has been cancelled. See our <a href="{% url 'covid' %}">full update</a>.</p>
<p class="lead">{% trans "Due to Covid-19, and the closing of MCPS schools, Peter and the Wolf has been cancelled. See our "%}<a href="{% url 'covid' %}">full update</a>.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">{% trans "Close"%}</button>
</div>
</div>
</div>
Expand Down
27 changes: 26 additions & 1 deletion core/templates/core/covid.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,37 @@ <h1 class="display-2 text-center">{% trans "COVID-19 Update" %}</h1>
<h2 class="card-title">{% trans "A Message from Us" %}</h2>
<p class="card-text">{% trans "We are so sorry to have to cancel this event. Even though the schools may re-open, we are certain the teachers and students will have too many demands on their schedules to pull this off this year. Know that we appreciate your support and will start refunding money tomorrow. You don't have to do anything; your charges will be refunded directly to your credit card. Please be patient, but if you have any questions, by all means contact us at " %}<a href="mailto:[email protected]">[email protected]</a>.</p>
<p class="card-text">{% trans "We certainly hope to see you next year. In the meantime, remember to appreciate and patronize our wonderful " %}<a href="{% url 'about' %}">{% trans "sponsors"%}</a>{% trans " when you can." %}</p>
{# <p class="card-text">{% trans "Also, we have posted some Peter and the Wolf resources below for your family to enjoy while you're at home!" %}</p>#}
<p class="card-text">{% trans "Also, we have posted some Peter and the Wolf resources below for your family to enjoy while you're at home!" %}</p>

</div>
</div>
</div>
</div>


<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h2 class="card-title">{% trans "See a Performance" %}</h2>
<p class="card-text">{% trans "The Royal Opera House released a wonderful narrated, ballet version of Peter and the Wolf, only viewable through April!" %}</p>
<a href="https://www.broadwayworld.com/videoplay/VIDEO-Royal-Opera-House-Kicks-Off-OurHousetoYourHouse-With-PETER-AND-THE-WOLF-20200331" target="_blank" class="btn btn-primary">{% trans "Watch the Performance"%}</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h2 class="card-title">{% trans "Downloads" %}</h2>
<a href="{% static 'core/pdf/coloring.pdf' %}" target="_blank" class="btn btn-primary">{% trans "Coloring"%}</a>
<a href="{% static 'core/pdf/crowns.pdf' %}" target="_blank" class="btn btn-primary">{% trans "Paper Crowns"%}</a>
<a href="{% static 'core/pdf/wordsearch.pdf' %}" target="_blank" class="btn btn-primary">{% trans "Word Search"%}</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}

0 comments on commit 4485afb

Please sign in to comment.