Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #32 from chnm/css-updates
Browse files Browse the repository at this point in the history
Css-updates
  • Loading branch information
hepplerj authored Mar 16, 2024
2 parents 0150cc6 + 64a8043 commit c113063
Show file tree
Hide file tree
Showing 39 changed files with 827 additions and 71 deletions.
10 changes: 10 additions & 0 deletions postcards/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@
views.evolution_of_holocaust_7,
name="evolution_of_holocaust_7",
),
path(
"exhibits/evolution-8/",
views.evolution_of_holocaust_8,
name="evolution_of_holocaust_8",
),
path(
"exhibits/evolution-9/",
views.evolution_of_holocaust_9,
name="evolution_of_holocaust_9",
),
path("map/", views.mapinterface, name="map"),
path("timeline/", views.timeline, name="timeline"),
path("resources/", views.resources, name="resources"),
Expand Down
11 changes: 10 additions & 1 deletion postcards/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@ def evolution_of_holocaust_7(request: HttpRequest):
ctx = {"nav_links": nav_links}
return render(request, "postal/evolution_of_holocaust_7.html", ctx)

def evolution_of_holocaust_8(request: HttpRequest):
nav_links = get_nav_links("exhibits")
ctx = {"nav_links": nav_links}
return render(request, "postal/evolution_of_holocaust_8.html", ctx)

def evolution_of_holocaust_9(request: HttpRequest):
nav_links = get_nav_links("exhibits")
ctx = {"nav_links": nav_links}
return render(request, "postal/evolution_of_holocaust_9.html", ctx)

def timeline(request: HttpRequest):
nav_links = get_nav_links("timeline")
ctx = {"nav_links": nav_links}
Expand All @@ -113,7 +123,6 @@ def resources(request: HttpRequest):
ctx = {"nav_links": nav_links}
return render(request, "postal/resources.html", ctx)


def mapinterface(request: HttpRequest):
person = get_object_or_404(Person, pk=id)
postal_material = (
Expand Down
3 changes: 2 additions & 1 deletion theme/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ a:hover {
color: #a42650;
}

li {
ul li {
font-family: "ProximaNova";
color: #333;
font-size: 16px;
}

.btn-primary {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 44 additions & 29 deletions theme/templates/postal/evolution_of_holocaust.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{% extends "postal/base.html" %}
{% load static %}
{% block extracss %}
{% if request.path == '/exhibits/evolution/' %}
<link rel="stylesheet" type="text/css" href="{% static 'css/exhibit_individual_pages.css' %}">
{% endif %}
{% if request.path == '/exhibits/evolution/' %}
<link rel="stylesheet" type="text/css" href="{% static 'css/exhibit_individual_pages.css' %}">
{% endif %}
{% endblock %}

{% block title %}Evolution of Holocaust in Holland{% endblock title %}
Expand All @@ -30,22 +30,29 @@
<a href="{% url 'evolution_of_holocaust_2' %}#civil-internment"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Civil Internment
Camps</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
Camp Amersfoort</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action" onclick="makeActive(event)">Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action"
onclick="makeActive(event)">Concentration
Camp Vught </a>
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Gestapo Prison
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Gestapo Prison
Scheveningen </a>
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation" class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
Investigation and Punishment Prison - Utrecht
</a>
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Transit Camp
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Transit Camp
Westerbork
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_8' %}#german-concentration"
class="list-group-item list-group-item-action" onclick="makeActive(event)">
German Concentration Camp Mail
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_9' %}#post-war" class="list-group-item list-group-item-action"
onclick="makeActive(event)">
Post War Enquiries
</a>
</div>
Expand Down Expand Up @@ -105,7 +112,8 @@ <h2> Tragedy Foretold </h2>
<div class="col-lg-2"></div>
<div class="col-lg-8">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/change of address card 1.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/change of address card 1.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Change of Address
Card - September 8, 1943</figcaption>
<figcaption class="figure-caption unbold">Domestic change of
Expand Down Expand Up @@ -238,7 +246,8 @@ <h2> Legal Refugees </h2>
<div class="row new-row-indent-sm end-row-indent-sm">
<div class="col-lg-4">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/Palestine Pioneer Farm, Weerselo.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/Palestine Pioneer Farm, Weerselo.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Palestine Pioneer Farm, Weerselo </figcaption>
</figure>
</div>
Expand Down Expand Up @@ -342,14 +351,16 @@ <h2> Illegal Refugees </h2>

<div class="col-lg-6">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/camp’s-private-mailbox.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/camp’s-private-mailbox.png' %}"
class="img-fluid">
</figure>
<p>Refugee mail had to be deposited in the camp’s private mailbox, after which it was read by a
censor and given the red hand stamp shown on the reverse.</p>
</div>
<div class="col-lg-6">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/refugee camp westerbork.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/refugee camp westerbork.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Refugee Camp Westerbork</figcaption>
</figure>
</div>
Expand Down Expand Up @@ -524,7 +535,8 @@ <h2> The S.S. St. Louis Voyage of the Damned </h2>
</div>
<div class="col-lg-2">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/Captain Gustav Schröder.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/Captain Gustav Schröder.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Captain Gustav Schröder
</figcaption>
</figure>
Expand Down Expand Up @@ -564,7 +576,8 @@ <h2> The S.S. St. Louis Voyage of the Damned </h2>
<div class="row">
<div class="col-lg-6">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/Anti-Jewish Graffiti.png' %}" class="img-fluid">
<img src="{% static 'images/evolution-of-holocaust/Anti-Jewish Graffiti.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Anti-Jewish Graffiti</figcaption>
</figure>
</div>
Expand Down Expand Up @@ -600,8 +613,10 @@ <h2> The S.S. St. Louis Voyage of the Damned </h2>

<div class="col-lg-6">
<figure class="figure">
<img src="{% static 'images/evolution-of-holocaust/Entry in “The 102,000 Names”.png' %}" class="img-fluid">
<figcaption class="figure-caption">Entry in “The 102,000 Names”© 2018 Herinneringscentrum Kamp Westerbork</figcaption>
<img src="{% static 'images/evolution-of-holocaust/Entry in “The 102,000 Names”.png' %}"
class="img-fluid">
<figcaption class="figure-caption">Entry in “The 102,000 Names”© 2018 Herinneringscentrum Kamp
Westerbork</figcaption>
</figure>
</div>

Expand All @@ -610,18 +625,18 @@ <h2> The S.S. St. Louis Voyage of the Damned </h2>
<!-- End Central Refugee/Transit Camp Westerbork -->
<nav aria-label="Page navigation example" class="pagination-nav">
<ul class="pagination justify-content-center">
<li class="page-item active"><a class="page-link" href="{% url 'evolution_of_holocaust' %}">1</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_2' %}">2</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_3' %}">3</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_4' %}">4</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_4' %}">5</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_6' %}">6</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_7' %}">7</a></li>
<li class="page-item"><a class="page-link" href="#">8</a></li>
<li class="page-item"><a class="page-link" href="#">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_2' %}">Next</a></li>
<li class="page-item active"><a class="page-link" href="{% url 'evolution_of_holocaust' %}">1</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_2' %}">2</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_3' %}">3</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_4' %}">4</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_4' %}">5</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_6' %}">6</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_7' %}">7</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_8' %}">8</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_9' %}">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_2' %}">Next</a></li>
</ul>
</nav>
</nav>

</div>
<!-- end exhibit content -->
Expand Down
25 changes: 16 additions & 9 deletions theme/templates/postal/evolution_of_holocaust_2.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,29 @@
<a href="{% url 'evolution_of_holocaust_2' %}#civil-internment"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Civil Internment
Camps</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
Camp Amersfoort</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action" onclick="makeActive(event)">Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action"
onclick="makeActive(event)">Concentration
Camp Vught </a>
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Gestapo Prison
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Gestapo Prison
Scheveningen </a>
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation" class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
Investigation and Punishment Prison - Utrecht
</a>
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Transit Camp
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Transit Camp
Westerbork
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_8' %}#german-concentration"
class="list-group-item list-group-item-action" onclick="makeActive(event)">
German Concentration Camp Mail
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_9' %}#post-war" class="list-group-item list-group-item-action"
onclick="makeActive(event)">
Post War Enquiries
</a>
</div>
Expand Down Expand Up @@ -528,8 +535,8 @@ <h2> The Dutch Resistance </h2>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_5' %}">5</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_6' %}">6</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_7' %}">7</a></li>
<li class="page-item"><a class="page-link" href="#">8</a></li>
<li class="page-item"><a class="page-link" href="#">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_8' %}">8</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_9' %}">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_3' %}">Next</a></li>
</ul>
</nav>
Expand Down
27 changes: 17 additions & 10 deletions theme/templates/postal/evolution_of_holocaust_3.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,29 @@
<a href="{% url 'evolution_of_holocaust_2' %}#civil-internment"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Civil Internment
Camps</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-amersfoort"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> Concentration
Camp Amersfoort</a>
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action" onclick="makeActive(event)">Concentration
<a href="{% url 'evolution_of_holocaust_3' %}#camp-vught" class="list-group-item list-group-item-action"
onclick="makeActive(event)">Concentration
Camp Vught </a>
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Gestapo Prison
<a href="{% url 'evolution_of_holocaust_3' %}#gestapo-prison" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Gestapo Prison
Scheveningen </a>
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation" class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
<a href="{% url 'evolution_of_holocaust_3' %}#german-investigation"
class="list-group-item list-group-item-action" onclick="makeActive(event)"> German
Investigation and Punishment Prison - Utrecht
</a>
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action" onclick="makeActive(event)"> Transit Camp
<a href="{% url 'evolution_of_holocaust_4' %}" class="list-group-item list-group-item-action"
onclick="makeActive(event)"> Transit Camp
Westerbork
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_8' %}#german-concentration"
class="list-group-item list-group-item-action" onclick="makeActive(event)">
German Concentration Camp Mail
</a>
<a href="#" class="list-group-item list-group-item-action" onclick="makeActive(event)">
<a href="{% url 'evolution_of_holocaust_9' %}#post-war" class="list-group-item list-group-item-action"
onclick="makeActive(event)">
Post War Enquiries
</a>
</div>
Expand Down Expand Up @@ -386,7 +393,7 @@ <h2> Imprisonment </h2>
<div class="col-lg-3"></div>

</div>
<!-- End German Investigation and Punishment Prison – Utrecht -->
<!-- End German Investigation and Punishment Prison – Utrecht -->
<nav aria-label="Page navigation example" class="pagination-nav">
<ul class="pagination justify-content-center">
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_2' %}">Previous</a></li>
Expand All @@ -397,8 +404,8 @@ <h2> Imprisonment </h2>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_5' %}">5</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_6' %}">6</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_7' %}">7</a></li>
<li class="page-item"><a class="page-link" href="#">8</a></li>
<li class="page-item"><a class="page-link" href="#">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_8' %}">8</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_9' %}">9</a></li>
<li class="page-item"><a class="page-link" href="{% url 'evolution_of_holocaust_4' %}">Next</a></li>
</ul>
</nav>
Expand Down
Loading

0 comments on commit c113063

Please sign in to comment.