Download
We're evolving to serve you better! This current forum has transitioned to read-only mode. For new discussions, support, and engagement, we've moved to GitHub Discussions.

Make feature image clickable (point to the associated post)

#1146
Avatar photoBob

Here is a list of handlebars you can use in the post context: https://getpublii.com/dev/post-tags/

e.g.

{{#featuredImage}}
    {{#if url}}
        <a href=”{{../url}}”>
            <img src=”{{url}}”  alt=”{{alt}}”>
        </a>
    {{/if}}
{{/featuredImage}}