Refactor to use plain GoStyleCamelCase instead of json_style_snake_case.

This commit is contained in:
Zed A. Shaw 2025-09-18 15:44:53 -04:00
parent 931c493928
commit 051474bdc9
12 changed files with 60 additions and 61 deletions

View file

@ -11,12 +11,12 @@
<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 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>
<h3 x-text="item.Title"></h3>
<p x-text="item.Description"></p>
</block>
</grid>
</template>