You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
682 B
TypeScript

// TODO: now that this is in typescript, maybe share quote list and
// dynamically pick one here?
export const render = () => `
<div class="home-quote">
<blockquote>
The world ain't all sunshine and rainbows. It's a very mean and
nasty place, and I don't care how tough you are it will beat you
to your knees and keep you there permanently if you let it. You,
me, or nobody is gonna hit as hard as life. But it ain't about
how hard you hit. It's about how hard you can get hit and keep
moving forward. How much you can take and keep moving forward.
That's how winning is done!
<cite>Rocky</cite>
</blockquote>
<script>initQuote()</script>
</div>
`;