How to create a logo-only page template without navigation?

HI

How do I create a page template that does NOT have the navigation, footer or header and only contains the logo.

Thanks for your help here!

1 Like

Hi @Artesands

you can create something like that example below

  1. create layout: layout/theme.page.links.liquid

in this file, remove other code in body tag but keep this code:

{{ content_for_layout }}

  1. create the file templates/page.links.liquid

just need this code

{% layout 'theme.page.links' %}
{% section 'page-links' %}
  1. in file sections/page-links.liquid you can add what you want