Собрали в одном месте самые важные ссылки
читайте нас в Twitter
# Comments with '#'
# All code start with a dash (consistency).
# Define a variable like this:
-var name = 'PyPUGly'
# Define a function like this:
-def title(name):
h1.title '{name}''
html(lang="en")
head
# All strings must be quoted. Only single-quotes are accepted (consistency).
title 'This is {name}'
body
# Call a function like this:
+title('PyPUGly')
#container
p 'Strings must be quoted.'