Today's verse

I want one, too!

Well of course you do! All you have to do is copy and paste one of the codes below into your website. It will do everything automatically for you. If you want to be fancy, make sure you run by the customizations page and generate a custom code for yourself!

Basic Text Widget

This is the most basic form of the widget—it's what you see at the top of this page!

<div id="tlv-verse-of-the-day"></div>
<script src="https://tlvverseoftheday.com/static/js/tlv.verseoftheday.js"></script>
<script type="text/javascript">
  window.onload = function () {
      tlv_verse_of_the_day("text", { style: "", image: "" });
  }
</script>

Basic Photo Widget

This one's a little more fancy—if the verse of the day has a photo attached to it, this will display an image instead of text. (But don't worry, if there's no image, it'll still fall back to the text version.)

<div id="tlv-verse-of-the-day"></div>
<script src="https://tlvverseoftheday.com/static/js/tlv.verseoftheday.js"></script>
<script type="text/javascript">
  window.onload = function () {
      tlv_verse_of_the_day("image", { style: "", image: {width: 415, height: 415} });
  }
</script>