This website works better with JavaScript.
Home
Help
Sign In
ben
/
copyvios
mirror of
https://github.com/earwig/copyvios
Watch
1
Star
1
Fork
0
Code
Releases
0
Activity
Browse Source
Testing a very simple template system
pull/24/head
Ben Kurtovic
13 years ago
parent
6137b2b66b
commit
2c038ee05c
3 changed files
with
10 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
pages/index.mako
+2
-0
support/footer.mako
+5
-0
support/header.mako
+ 3
- 1
pages/index.mako
View File
@@ -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
View File
@@ -0,0 +1,2 @@
</body>
</html>
+ 5
- 0
support/header.mako
View File
@@ -0,0 +1,5 @@
<html>
<head>
<title>${title}</title>
</head>
<body>
Write
Preview
Loading…
Cancel
Save