Skip to content

Commit d1c638d

Browse files
committed
Removed Mary Strodl
1 parent a191661 commit d1c638d

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/templates/credits.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{% extends "header.html" %} {% block headertext %} Credits {%endblock%}
2+
{% block content %}
3+
<h2>Contributors</h2>
4+
<p>Many people have contributed to the different aspects of the Devcade project. Listed below (alphabetically) are the names of those who contributed to the core of the project</p>
5+
<div class="card-wrapper">
6+
{% for i in range(0,contributors|length) %}
7+
<div class="game-card" style="background-image: url({{ url_for('static', filename='images/csh_tilted.png') }})">
8+
<img class="game-icon" src="https://www.gravatar.com/avatar/{{ contributors[i].email }}" />
9+
<div class="game-name">
10+
<div>
11+
<h2>{{ contributors[i].name }}</h2>
12+
<h3></h3>
13+
</div>
14+
</div>
15+
<div class="game-desc"><div></div></div>
16+
</div>
17+
18+
{% endfor %}
19+
</div>
20+
<ul>
21+
<li>Andrew Ebersole</li>
22+
<li>Noah Emke</li>
23+
<li>Will Lyons</li>
24+
<li>Wilson McDade</li>
25+
<li>Willard Nilges</li>
26+
<li>Joe O'Neil</li>
27+
<li>Ben Piro</li>
28+
<li>Dennis Santos Sanchez</li>
29+
<li>Andrew Simonson</li>
30+
<li>Ella Soccoli</li>
31+
<li>Nathan Teall</li>
32+
<li>Alex Vasilcoiu</li>
33+
<li>Chris Wells</li>
34+
</ul>
35+
{% endblock %}

src/templates/header.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% macro gamecard(game) %}
2+
{% if game.author != "mstrodl" %}
23
<a href="/game/{{ game.id }}">
34
<div class="game-card" style="background-image: url({{ game.bannerLink }})">
45
<img class="game-icon" src="{{ game.iconLink }}" />
@@ -11,6 +12,7 @@ <h3>{{ game.author }}</h3>
1112
<div class="game-desc"><div>{{ game.description }}</div></div>
1213
</div>
1314
</a>
15+
{% endif %}
1416
{% endmacro %} {% block header %}
1517
<!DOCTYPE html>
1618
<html lang="en">

0 commit comments

Comments
 (0)