Guest User

Untitled

a guest
Jul 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1.  
  2. <%
  3.  
  4. a = context["a"]
  5. b = [1,2,3,4,5,6,7,8,9]
  6.  
  7. def test():
  8. return "Hello world function"
  9.  
  10. %>
  11.  
  12. <%def name="abc()">
  13. Hello world tag
  14. </%def>
  15.  
  16. <html>
  17. <head>
  18. </head>
  19. <body>
  20. a has value: ${a} <br/>
  21. Function call: ${test()} <br/>
  22. Tag call: ${abc()} <br/>
  23.  
  24. this is some <b>html</b> text <br/>
  25.  
  26. % for i in b:
  27. ${i}\
  28. % endfor
  29.  
  30. </body>
  31. </html>
Add Comment
Please, Sign In to add comment