23 lines
791 B
HTML
23 lines
791 B
HTML
<script>
|
|
let Games = new PaginateTable('/api/game');
|
|
</script>
|
|
|
|
<aside>
|
|
<h1 id="page-title">Games I've Made</h1>
|
|
|
|
<p>I only started making games in 2025, and in that time I've made these. All games are hand coded in C++ or another language and feature all hand crafted art by me unless stated otherwise. You can find the code to all games in my <a href="https://git.zedshaw.games/games/">git repo</a>.</p>
|
|
</aside>
|
|
|
|
<block x-data="Games">
|
|
<template x-for="item in contents">
|
|
<grid class="two-panel">
|
|
<a data-testid="game-link" x-bind:href="`/game/${item.Id}/${item.Slug}/`">
|
|
<img x-bind:src="item.Image" />
|
|
</a>
|
|
<block>
|
|
<h3 x-text="item.Title"></h3>
|
|
<p x-text="item.Description"></p>
|
|
</block>
|
|
</grid>
|
|
</template>
|
|
</block>
|