Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2022 cleanup #116

Merged
merged 2 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions _layouts/game_jam_game.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@
layout: default
---
<div class="jam">
<a href="{{ page.url }}">
<h2>{{ page.title }}</h2>
</a>
{% if page.gameLink != null %}
<a class = aInParagraph href="{{ page.gameLink }}">Download</a>
<div style="width: 20%; float:left;">
<img alt="" src="{{ jam.imageLink}}" style="width: 100%;">
</div>
<div style="width: 60%; float:left; padding: 2%; padding-top: 1%;">
<a href="{{ page.url }}">
<h2>{{ page.title }}</h2>
</a>
{% if page.gameLink != null %}
<a class=aInParagraph href="{{ page.gameLink }}">Download</a>
<br>
{% endif %}
{{ page.content }}
{% endif %}
{{ page.content }}
</div>
</div>
1 change: 1 addition & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ html {
padding: 0;
text-align: center;
z-index: 10;
box-shadow: 0 0 10px;
}

.navbar ol {
Expand Down
2 changes: 1 addition & 1 deletion game-jams/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h3>Game Jams</h3>
<a href="{{ jam.jamLink }}">
<h2>{{ jam.title }}</h2>
</a>
{$ else %}
{% else %}
<a href="{{ jam.url }}">
<h2>{{ jam.title }}</h2>
</a>
Expand Down