-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgames.html
27 lines (26 loc) · 887 Bytes
/
games.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: Games
date: 2015-4-29
---
<link rel="stylesheet" href="css/games.css">
<section><ol class="games">
{% for game in site.categories.games %}
<li>
<a href="
{% if game.layout == "none" %}
{{ game.link }}
{% else %}
{{ site.url }}{{ game.url }}
{% endif %}
"><img src="{{ site.url }}{{ game.thumbnail }}" title="{{ game.title }}" /></a>
</li>
{% endfor %}
</ol></section>
<section class = "submit">
<h2>Submit!</h2>
If you are in Gamebuilders and would like your game on this page, you can email me (puchner2 at illinois edu) with a description, credits, a few images and a 256x256 thumbnail. Or you can make a pull request at <a href="https://github.com/GameBuilders/gamebuilders-site.">our github.</a>
</section>
<footer>
<p>Last updated: <time pubdate>{{ page.date | date: "%-d %B %Y" }}</title></p>
</footer>