C#模板引擎 DotLiquid
时间:2014-12-24 09:51:07
收藏:0
阅读:373
DotLiquid 是一个简单、快速和安全的模板引擎,移植自 Ruby 的 Liquid 标签。
示例模板:
<p>{{ user.name }} has to do:</p>
<ul>
{% for item in user.tasks %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
原文:http://www.cnblogs.com/rongfengliang/p/4181625.html
评论(0)