File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 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 %}
Original file line number Diff line number Diff line change 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 ">
You can’t perform that action at this time.
0 commit comments