10 lines
392 B
HTML
10 lines
392 B
HTML
<p class="site-title">
|
|
Merry Christmas!
|
|
</p>
|
|
|
|
<div x-data="{ quoteSel: {}, quoteIndex: -1 }" x-init="quoteSel = (await quotesForPage.getRandomQuoteAsync())">
|
|
<blockquote x-text="quoteSel.quote">
|
|
</blockquote>
|
|
<p class="cited-source"><span x-text="quoteSel.attribution"></span>, <cite x-text="quoteSel.source"></cite></p>
|
|
<input type="hidden" x-model="quoteIndex" />
|
|
</div> |