Can you customize the logo and layout on your blog page?

Hey!

I wonder if you can have a different logo on you blog page than rest of the website? For example use “Blog name” by “Company Name”

Also in general change the layout, maybe removing a menu and custom slideshow at the top.

/Daniel

Hello @daniellinde ,

Yes it’s possible. Basic logic behind it, make it conditional.
e.g.
{% if template == ‘blog’ %}

Display different logo ( logo html/code )

{% else %}
Display default logo ( default logo html/code )

{% endif %}

Thanks