hypnagaga/src/components/AdSlot/stories/docs/sponsorship.md
2024-04-08 13:57:10 +01:00

434 B

Add a sponsorship ad to your page.

IMPORTANT! Make sure ads are only used on dotcom pages, never on embeds.

<script>
  import {
    SponsorshipAd,
    AdScripts,
  } from '@reuters-graphics/graphics-components';
</script>

<!-- ALWAYS check if in an embed context! -->
{#if !embedded}
  <!-- Include AdScripts only ONCE per page -->
  <AdScripts />
{/if}

<!-- ... -->

{#if !embedded}
  <SponsorshipAd />
{/if}