An example of using `FeaturePhoto` in the Graphics Kit with a Google Doc. ```yaml # Google doc block Type: photo Width: normal Src: images/shark.jpg AltText: The king of the sea Caption: Carcharodon carcharias - REUTERS ``` ```svelte {#each content.blocks as block} {#if block.Type === 'text'} {:else if block.Type === 'photo'} {/if} {/each} ```