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 #123

Merged
merged 3 commits into from
Sep 16, 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
6 changes: 3 additions & 3 deletions game-jams/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h3>Game Jams</h3>
<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%;">
<div style="width: 70%; float:left; padding: 2%; padding-top: 1%;">
{% if jam.jamLink != null %}
<a href="{{ jam.jamLink }}">
<h2>{{ jam.title }}</h2>
Expand All @@ -24,10 +24,10 @@ <h2>{{ jam.title }}</h2>
<!--more-->' %}
{{ jam.content | split:'
<!--more-->' | first }}
<br /><br /><i><a href="{{ jam.url }}">Click here to read more..</a></i>
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ jam.content | truncate: 512 }}
<br /><br /><i><a href="{{ jam.url }}">Click here to read more..</a></i>
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% else %}
{{ jam.content }}
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions games/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ <h5>
<!--more-->' %}
{{ game.content | split:'
<!--more-->' | first }}
<br /><i><a href="{{ game.url }}">Click here to read more..</a></i>
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 256 %}
{{ game.content | truncate: 256 }}
<br /><i><a href="{{ game.url }}">Click here to read more..</a></i>
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% else %}
{{ game.content }}
{% endif %}
Expand Down
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ <h5>
<!--more-->' %}
{{ game.content | split:'
<!--more-->' | first }}
<br /><i><a href="{{ game.url }}">Click here to read more..</a></i>
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 256 %}
{{ game.content | truncate: 256 }}
<br /><i><a href="{{ game.url }}">Click here to read more..</a></i>
<i><a href="{{ game.url }}">(Click here to read more)</a></i>
{% else %}
{{ game.content }}
{% endif %}
Expand Down Expand Up @@ -107,10 +107,10 @@ <h5>{{person.startYear}} - {{person.endYear}}</h5>
<!--more-->' %}
{{ person.content | split:'
<!--more-->' | first }}
<br /><br /><i><a href="{{ person.url }}">Click here to read more..</a></i>
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ person.content | truncate: 512 }}
<br /><br /><i><a href="{{ person.url }}">Click here to read more..</a></i>
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% else %}
{{ person.content }}
{% endif %}
Expand All @@ -126,10 +126,10 @@ <h5>{{person.startYear}} - {{person.endYear}}</h5>
<!--more-->' %}
{{ person.content | split:'
<!--more-->' | first }}
<br /><br /><i><a href="{{ person.url }}">Click here to read more..</a></i>
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ person.content | truncate: 512 }}
<br /><br /><i><a href="{{ person.url }}">Click here to read more..</a></i>
<i><a href="{{ person.url }}">(Click here to read more)</a></i>
{% else %}
{{ person.content }}
{% endif %}
Expand All @@ -156,7 +156,7 @@ <h5>(<a href="/game-jams/">See list of all game jams</a>)</h5>
<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%;">
<div style="width: 70%; float:left; padding: 2%; padding-top: 1%;">
{% if jam.jamLink != null %}
<a href="{{ jam.jamLink }}">
<h2>{{ jam.title }}</h2>
Expand All @@ -171,10 +171,10 @@ <h2>{{ jam.title }}</h2>
<!--more-->' %}
{{ jam.content | split:'
<!--more-->' | first }}
<br /><br /><i><a href="{{ jam.url }}">Click here to read more..</a></i>
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% elsif contentSize > 512 %}
{{ jam.content | truncate: 512 }}
<br /><br /><i><a href="{{ jam.url }}">Click here to read more..</a></i>
<i><a href="{{ jam.url }}">(Click here to read more)</a></i>
{% else %}
{{ jam.content }}
{% endif %}
Expand Down