Templayer - Python分层模板库


未知
跨平台
Python

软件简介

Templayer是一个用在 Python和Django 的分层模板库的 。它目前只支持的HTML生成,但其简单的设计很容易扩展,以支持其他文件格式。

示例:

   <html>  
   <head><title>%title%</title></head>  
   <body>  
   <h1>%title%</h1>  
   {contents}

   {report}  
   <h3>%day%</h3>  
   %contents%  
   {/report}

   {happening}<p>%contents%</p>  
   {/happening}

   {/contents}  
   <hr>  
   <p>Generated on %date%.</p>  
   </body>  
   </html>