Skip to content

Instantly share code, notes, and snippets.

View tomasstana's full-sized avatar

Tomas Stana tomasstana

  • Stana Digital s.r.o.
  • Remote
View GitHub Profile
<!-- create the complete html img tag for a given image -->
<?= $page->image()->html() ?>
<!-- modify the attributes of the img tag -->
<?= $page->image()->html(['class' => 'myImage']) ?>
<!-- resize an image first and then get the img tag for it -->
<?= $page->image()->resize(300,200)->html() ?>