我在locomotivecms中创建了一个页面,在我的app / views / pages文件夹下,并将其命名为page2.liquid.haml,它包含以下代码。
{% extends 'index' %}
{% block 'main' %}This is the content for the page 2{% endblock %}
我可以查看索引页面,但我不确定如何在浏览器中查看page2我尝试的所有内容都会导致404。
任何想法?
答案 0 :(得分:1)
在液体标记之上,您需要一个带有页面标题,slug和已发布标志的YAML文件标题,如下所示:
---
title: Page 2
slug: page2
published: true
---
{% extends 'index' %}
{% block 'main' %}This is the content for the page 2{% endblock %}
您可以使用wagon generate page
命令自动生成包含此类标头的文件。
$ bundle exec wagon generate page test_page