FTL library file

ccm-docs
Jens Pelzetter 2019-11-30 18:26:23 +01:00
parent 7a4ba0f657
commit 742e0de0b7
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<#--filedoc
Utility functions for Freemarker based themes.
-->
<#--doc
Gets the application of the page served from the model.
@return The current application.
-->
<#function getPageApplication>
<#return application>
</#function>
<#--doc
Get the title of the current page.
This will only work of the current page is a navigation page with a category
menu.
@return The title of the current page
-->
<#function getPageTitle>
<#return title>
</#function>