40 lines
2.3 KiB
HTML
40 lines
2.3 KiB
HTML
<div class="flex flex-col"
|
|
x-data="{item: {}}"
|
|
x-init="item = await GetJson('/api/game/1')">
|
|
|
|
<h3 x-text="item.title"></h3>
|
|
|
|
<div class="gap-3 pb-3 flex flex-col lg:flex-row-reverse">
|
|
<div class="!text-sm !p-0 flex flex-col md:flex-row lg:flex-col">
|
|
<shape class="video">small header</shape>
|
|
<p class="m-2" x-text="item.description"></p>
|
|
</div>
|
|
<video controls width="600">
|
|
<template x-if="item.video">
|
|
<source :src="item.video" type="video/mp4" />
|
|
</template>
|
|
</video>
|
|
</div>
|
|
|
|
<grid class="bg-gray-800 two-panel">
|
|
<block>
|
|
<p>Polaroid retro pork belly yes plz bitters, viral chicharrones typewriter chartreuse vice Brooklyn. Adaptogen pour-over vibecession viral. Tote bag tonx DIY microdosing. Pickled selvage bespoke small batch, blue bottle twee tacos jean shorts before they sold out chicharrones solarpunk. Hoodie taiyaki poutine jianbing chambray.</p>
|
|
</block>
|
|
|
|
<block class="bg-gray-800">
|
|
<h2>Current Status</h2>
|
|
<p>Polaroid retro pork belly yes plz bitters, viral chicharrones typewriter chartreuse vice Brooklyn. Adaptogen pour-over vibecession viral. Tote bag tonx DIY microdosing. Pickled selvage bespoke small batch, blue bottle twee tacos jean shorts before they sold out chicharrones solarpunk. Hoodie taiyaki poutine jianbing chambray.</p>
|
|
</block>
|
|
|
|
<block>
|
|
<h2>Planned Work</h2>
|
|
<p>Polaroid retro pork belly yes plz bitters, viral chicharrones typewriter chartreuse vice Brooklyn. Adaptogen pour-over vibecession viral. Tote bag tonx DIY microdosing. Pickled selvage bespoke small batch, blue bottle twee tacos jean shorts before they sold out chicharrones solarpunk. Hoodie taiyaki poutine jianbing chambray.</p>
|
|
</block>
|
|
|
|
<block class="bg-gray-800">
|
|
<h2>Read The Code</h2>
|
|
<p>Polaroid retro pork belly yes plz bitters, viral chicharrones typewriter chartreuse vice Brooklyn. Adaptogen pour-over vibecession viral. Tote bag tonx DIY microdosing. Pickled selvage bespoke small batch, blue bottle twee tacos jean shorts before they sold out chicharrones solarpunk. Hoodie taiyaki poutine jianbing chambray.</p>
|
|
<button><a href="https://git.learnjsthehardway.com/learn-code-the-hard-way/turings-tarpit">View the Git</a></button>
|
|
</block>
|
|
</grid>
|
|
</div>
|