craftcms / spoke-and-chain

Craft CMS + Craft Commerce demo site.
https://craftcms.com/demo?kind=spokeandchain
BSD Zero Clause License
53 stars 28 forks source link

Add + support image alt text and captions. #53

Closed mattstein closed 3 years ago

mattstein commented 3 years ago

Description

Adds imageAlt and imageCaption fields to be used within Content Blocks for articles, so we can mention custom Asset field layouts in the guide.

Fields in layout:

Screen Shot 2021-09-15 at 02 34 50 PM@2x

Example caption: Screen Shot 2021-09-15 at 02 36 57 PM@2x

Markup with caption:

<figure>
  <img class="w-full" src="(...)" srcset="(...)" width="380" height="152" alt="Two bicycles perched in a tree" sizes="(...)">
  <figcaption class="px-6 py-3 text-gray-600 text-sm text-center">Two bicycles perch precariously in a tree.</figcaption>
</figure>

Markup without caption:

<div>
  <img class="w-full" src="(...)" srcset="(...)" width="380" height="152" alt="Two bicycles perched in a tree" sizes="(...)">
</div>