Skip to main content

Homepage template

I have a section which I'd like to appear only on the homepage. Is there any way I can alter the layout.html code so that it only shows this particular section on the homepage?

Thanks

Official response from

Taylor, using liquid conditionals, you can edit your layout.html file with something like:

{% if page.slug == 'home' }

Place all content you want to appear only on this page slug here.

{% endif }

Share this post

Showing 4 reactions

How would you tag this suggestion?
Please check your e-mail for a link to activate your account.