浏览代码

Testing a very simple template system

pull/24/head
Ben Kurtovic 13 年前
父节点
当前提交
2c038ee05c
共有 3 个文件被更改,包括 10 次插入1 次删除
  1. +3
    -1
      pages/index.mako
  2. +2
    -0
      support/footer.mako
  3. +5
    -0
      support/header.mako

+ 3
- 1
pages/index.mako 查看文件

@@ -1 +1,3 @@
Hello World!
<%include file="header.mako" args="title='Index Page'"/>
<p>Earwig!</p>
<%include file="footer.mako"/>

+ 2
- 0
support/footer.mako 查看文件

@@ -0,0 +1,2 @@
</body>
</html>

+ 5
- 0
support/header.mako 查看文件

@@ -0,0 +1,5 @@
<html>
<head>
<title>${title}</title>
</head>
<body>

正在加载...
取消
保存