Skip to content

Instantly share code, notes, and snippets.

@jamescasbon
Created January 9, 2012 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamescasbon/1585116 to your computer and use it in GitHub Desktop.
Save jamescasbon/1585116 to your computer and use it in GitHub Desktop.
Python template example
d = Doc()
with d.html:
with d.head:
d.title ('example page')
d.link (rel='stylesheet', href='/style.css', type='text/css')
with d.body (style='foo'):
d.a ('other stuff on another page', href='/other.html')
d.p ('stuff on this page')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment