I have one hero image and one side image on my page. Both are displaying in the browser, but I seem to have different types of code to achieve the same thing. And I’m confused about what is the right way to do it.
title: Default Page
columns:
main:
width: 2/3
sections:
section1:
type: fields
fields:
hero_image:
label: Hero image
type: files
multiple: false
layout: cards
size: huge
image:
back: white
sidebar:
width: 1/3
sections:
section3:
type: fields
fields:
side_image:
label: Side image
type: files
multiple: false
layout: cards
size: medium
image:
back: white
Then my Template uses two different ways to get the images to display in the browser
<?php if ($moondust = $page->hero_image()->toFile()): ?>
<div class="hero-image">
<?= $moondust->crop(1600, 800) ?>
</div>
<?php endif ?>
<?php if($image = $page->side_image()->toFile()): ?>
<img src="<?= $image->url() ?>" alt="">
<?php endif ?>
I want the hero image to be cropped. Does this account for the different code?