Fix index page content layout
This commit is contained in:
parent
a8e1b39023
commit
a3edf5449b
|
@ -4,48 +4,79 @@
|
|||
<h1>My Work</h1>
|
||||
|
||||
<div class="columns">
|
||||
<div class="slideshow" style="min-width: 70%;">
|
||||
<a href="https://store.steampowered.com/app/2399420/Le_Mans_Ultimate/">
|
||||
<div class="title">Le Mans Ultimate</div>
|
||||
<img src="/showreel/le-mans-ultimate-hud.png" />
|
||||
<div class="summary">World Endurance Championship racing simulation.</div>
|
||||
</a>
|
||||
<div style="min-width: 70%;">
|
||||
<div class="slideshow">
|
||||
<a href="https://store.steampowered.com/app/2399420/Le_Mans_Ultimate/">
|
||||
<div class="title">Le Mans Ultimate</div>
|
||||
<img src="/showreel/le-mans-ultimate-hud.png" />
|
||||
<div class="summary">World Endurance Championship racing simulation.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=zm8Sx6cVbmM">
|
||||
<div class="title">Afterglow</div>
|
||||
<img src="/showreel/afterglow.png" />
|
||||
<div class="summary">Work-in-progress immersive sim experiment built using a the Ona game engine.</div>
|
||||
</a>
|
||||
<a href="https://www.youtube.com/watch?v=zm8Sx6cVbmM">
|
||||
<div class="title">Afterglow</div>
|
||||
<img src="/showreel/afterglow.png" />
|
||||
<div class="summary">Work-in-progress immersive sim experiment built using a the Ona game engine.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.youtube.com/watch?v=ijJhM8nfthw">
|
||||
<div class="title">Afterglow</div>
|
||||
<img src="/showreel/afterglow-menu.png" />
|
||||
<div class="summary">Work-in-progress immersive sim experiment built using a the Ona game engine.</div>
|
||||
</a>
|
||||
<a href="https://www.youtube.com/watch?v=ijJhM8nfthw">
|
||||
<div class="title">Afterglow</div>
|
||||
<img src="/showreel/afterglow-menu.png" />
|
||||
<div class="summary">Work-in-progress immersive sim experiment built using a the Ona game engine.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://sauce.pizzawednes.day/protectorate/game">
|
||||
<div class="title">Protectorate Map Editor</div>
|
||||
<img src="/showreel/protectorate-interior-editor.png" />
|
||||
<div class="summary">Interior map editor for a turn-based RPG-lite built in the Godot game engine.</div>
|
||||
</a>
|
||||
<a href="https://sauce.pizzawednes.day/protectorate/game">
|
||||
<div class="title">Protectorate Map Editor</div>
|
||||
<img src="/showreel/protectorate-interior-editor.png" />
|
||||
<div class="summary">Interior map editor for a turn-based RPG-lite built in the Godot game engine.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://sauce.pizzawednes.day/protectorate/game">
|
||||
<div class="title">Protectorate Map Editor</div>
|
||||
<img src="/showreel/protectorate-exterior-editor.png" />
|
||||
<div class="summary">Exterior map editor for a turn-based RPG-lite built in the Godot game engine.</div>
|
||||
</a>
|
||||
<a href="https://sauce.pizzawednes.day/protectorate/game">
|
||||
<div class="title">Protectorate Map Editor</div>
|
||||
<img src="/showreel/protectorate-exterior-editor.png" />
|
||||
<div class="summary">Exterior map editor for a turn-based RPG-lite built in the Godot game engine.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.myenergygame.net/">
|
||||
<div class="title">My Energy Game® Quest</div>
|
||||
<img src="/showreel/my-energy-game-intro.png" />
|
||||
<div class="summary">Sports therapy simulation designed to help athletes with their mental state.</div>
|
||||
</a>
|
||||
<a href="https://www.myenergygame.net/">
|
||||
<div class="title">My Energy Game® Quest</div>
|
||||
<img src="/showreel/my-energy-game-intro.png" />
|
||||
<div class="summary">Sports therapy simulation designed to help athletes with their mental state.</div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.myenergygame.net/">
|
||||
<div class="title">My Energy Game® Quest</div>
|
||||
<img src="/showreel/my-energy-game-activity.png" />
|
||||
<div class="summary">Sports therapy simulation designed to help athletes with their mental state.</div>
|
||||
</a>
|
||||
<a href="https://www.myenergygame.net/">
|
||||
<div class="title">My Energy Game® Quest</div>
|
||||
<img src="/showreel/my-energy-game-activity.png" />
|
||||
<div class="summary">Sports therapy simulation designed to help athletes with their mental state.</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<h1>Articles</h1>
|
||||
|
||||
{% set blog_section = get_section(path="blog/_index.md") %}
|
||||
|
||||
{% for page in blog_section.pages %}
|
||||
<div>
|
||||
<a href="{{ page.permalink }}"><h2>{{ page.title }}</h2></a>
|
||||
|
||||
{% set day = page.date | date(format="%e") %}
|
||||
{% set month = page.date | date(format="%B") %}
|
||||
{% set year = page.date | date(format="%Y") %}
|
||||
|
||||
{% set day_suffix = "" %}
|
||||
{% if day in ["1", "21", "31"] %}
|
||||
{% set day_suffix = "st" %}
|
||||
{% elif day in ["2", "22"] %}
|
||||
{% set day_suffix = "nd" %}
|
||||
{% elif day in ["3", "23"] %}
|
||||
{% set day_suffix = "rd" %}
|
||||
{% else %}
|
||||
{% set day_suffix = "th" %}
|
||||
{% endif %}
|
||||
|
||||
Posted {{ day }}{{ day_suffix }} {{ month }} {{ year }}
|
||||
|
||||
<p>{{ page.content | striptags | truncate(length=255) }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div style="min-width: 30%;">
|
||||
|
@ -54,35 +85,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<h1>Articles</h1>
|
||||
|
||||
{% set blog_section = get_section(path="blog/_index.md") %}
|
||||
|
||||
{% for page in blog_section.pages %}
|
||||
<div>
|
||||
<a href="{{ page.permalink }}"><h2>{{ page.title }}</h2></a>
|
||||
|
||||
{% set day = page.date | date(format="%e") %}
|
||||
{% set month = page.date | date(format="%B") %}
|
||||
{% set year = page.date | date(format="%Y") %}
|
||||
|
||||
{% set day_suffix = "" %}
|
||||
{% if day in ["1", "21", "31"] %}
|
||||
{% set day_suffix = "st" %}
|
||||
{% elif day in ["2", "22"] %}
|
||||
{% set day_suffix = "nd" %}
|
||||
{% elif day in ["3", "23"] %}
|
||||
{% set day_suffix = "rd" %}
|
||||
{% else %}
|
||||
{% set day_suffix = "th" %}
|
||||
{% endif %}
|
||||
|
||||
Posted {{ day }}{{ day_suffix }} {{ month }} {{ year }}
|
||||
|
||||
<p>{{ page.content | striptags | truncate(length=255) }}</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
<style>
|
||||
.slideshow {
|
||||
min-height: 320px;
|
||||
|
|
Loading…
Reference in New Issue