justint / papaya

A clean Zola theme for blogging and projects.
https://justintennant.me/papaya/
MIT License
45 stars 24 forks source link

Change banner to be overridable #22

Closed Rahel-A closed 1 month ago

Rahel-A commented 8 months ago

Allows the alt text to be customised.

Currently the whole index.html would need to be altered, just to set the banner alt text, with this change, only the banner block needs to be overriden like this:

{% extends "papaya/templates/index.html" %}
{% block banner %}
<img src="{{ banner.url }}" class="index-banner" alt="Not a misty forest, but something else"/>
{% endblock banner %}