如何在'vm'模板中打印当前年份(UltraCart)

时间:2018-02-06 04:56:34

标签: templates virtual-machine velocity ultracart

我正在使用UltraCart主题,想要在页脚部分打印当前年份,如下所示:

<div class="copyright_center">&copy; Copyright MyWebSite</div>

我正在更改footer.vm模板文件,但我不知道'vm'模板语法。

我已经尝试过这个: -

#set ($date = $dateUtil) 
#set ($current_time = $date.getCurrentDate())
#set ($theYear = $date.getCurrentDate("yyyy", $locale))

<div class="copyright_center">&copy; Copyright $theYear MyWebSite</div>

但它不适合我。任何人都有想法,如何解决它?

1 个答案:

答案 0 :(得分:0)

在速度工具罐中,您有DateTool对象

  

在Velocity模板中使用日期和日历的工具

如果将年份格式提供给date对象,则需要执行此操作:

 $date.get('yyyy')