Hi!
Is it possible to make the images in the splash layout clickable/hyperlinked?
so that if I click the image for " Super customizable" on https://mmistakes.github.io/minimal-mistakes/ it would navigate me to a path?
Hi!
Is it possible to make the images in the splash layout clickable/hyperlinked?
so that if I click the image for " Super customizable" on https://mmistakes.github.io/minimal-mistakes/ it would navigate me to a path?
Hi Lewiuberg,
I don’t use Minimal mistakes, but I’m assuming that the image you’re wanting to link is on the home.html layout, you’d want something like
<a href="page_i_want_to_link_to.html"><img src="mm-customizable-feature.png" /></a>
If you’re wanting it to pull the image and the link from your recent posts, you would need something along the lines of:
<a href="{{ post.url | relative_url }}"><img src="{{ post.feat_image | relURL }}" alt="{{ .Title }}" /></a>
HTH