Change Something on Your Homepage
Last edit: Apr 15, 2020
Locate the home.liquid file in your codebase (app/views/pages/home.html.liquid).
---
slug: /
layout_name: 1col
metadata:
desc:
pagetitle: Home
---
<h1>{{ context.page.metadata.pagetitle }}</h1>
Open it in a code editor of your choice, and add some text. Don't edit the lines between ---:
---
slug: /
layout_name: 1col
metadata:
desc:
pagetitle: Home
---
<h1>{{ context.page.metadata.pagetitle }}</h1>
Hello, World!
Save your changes.