瀏覽代碼

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>

Loading…
取消
儲存