CodeKit $ pageTitle变量“undefined” - CodeKit编译问题

时间:2014-02-06 06:52:54

标签: variables codekit

我正在使用Foundation并使用.kit语言编译CodeKit。尝试使用$ pageTitle变量,我在_head-red.kit文件中调用它:

<title><!--$pageTitle--> | David Pindrys</title>

它在页面文件中定义为:

<!--- $pageTitle = Page Title -->

不知道发生了什么事。我的_head-ref.kit文件位于/ partials目录中,由页面文件(成功)调用,它们位于/ pages目录中。当我尝试编译时,我得到了

Line 6 of _head-ref.kit: The variable $pageTitle is undefined.

(This action was triggered by a change to _head-ref.kit

非常感谢任何帮助。感谢

2 个答案:

答案 0 :(得分:1)

<!--- $pageTitle = Page Title -->

需要

<!-- $pageTitle = Page Title -->

开场标记中的一个破折号

答案 1 :(得分:0)

在_head-ref.kit中添加以下内容:

<title><!-- @pageTitle--> | David Pindrys</title>

另外,在您的页面中执行以下操作:

<!-- @pageTitle : Page Title -->
<!-- @import '_head-ref' -->

这应该有效。有关详细信息,请查看以下页面:https://incident57.com/codekit/help.html#kit