2014-02-06 73 views
0

我正在使用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 

任何幫助,非常感謝。由於

+0

這與薩斯有什麼關係? – cimmanon

+0

好點。刪除標籤 – David

回答

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

需要是

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

一個破折號在開放標籤

0

在你_head-ref.kit添加下面的太多:

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

而且,在你的頁面中這樣做:

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

這應該有效。欲瞭解更多信息,請查看以下頁面:https://incident57.com/codekit/help.html#kit

+0

謝謝約書亞!將嘗試並報告回來 – David