Hey, I am scratching my head. Without the if statements, the replicator fields are showing. With the if statements, nothing is showing.
{{ my_replicator_field }}
{{ if type == "content_set" }}
<div class="text">
{{ text|markdown }}
</div>
{{ elseif type == "quote_set" }}
<setquote>{{ quote }}</setquote>
<p>— {{ cite }}</p>
{{ elseif type == "image_set" }}
<figure>
<img src="{{ photo }}" alt="{{ caption }}" />
<figcaption>{{ caption }}</figcaption>
</figure>
{{ endif }}
{{ /my_replicator_field }}