Hey, dumb question but I'm just wondering if there's a simple way to set a hero/header image with the default Antimatter theme? I've looked into one of the skeleton themes and I'm wondering if just copying this section of the code would work? Or is there something else I would need to consider? Thanks all!
{% set blog_image = page.media.images %}
{% if blog_image %}
<div class="flush-top blog-header blog-header-image" style="background-image: url({{ blog_image.url }});">
{% else %}
<div class="blog-header">
{% endif %}
</div>