Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @route("/home")
  2. def home():
  3. return template('home.tpl')
  4.  
  5. @route("/contact")
  6. def contact():
  7. return template('contact.tpl')
  8.  
  9. <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <title>Titel</title>
  13. <meta charset="UTF-8" />
  14. <link href="/static/css/style.css" type="text/css" rel="stylesheet" />
  15. </head>
  16. <body>
  17. {{base}}
  18. </body>
  19. </html>
  20.  
  21. % rebase('base.tpl')
  22. <b>Hallo World...</b>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement