zedshaw.games/pages/game/index.html
2025-09-17 13:18:13 -04:00

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>