def template(content): return render( html( head(title("Test web app"), script(src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js")), body(navigation(), h1("Greetings, comrade!"), div({"id": "content"}, content)), ) )
def template(content): return render( html( head( title("Test web app"), script( src= "//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" )), body(navigation(), h1("Greetings, comrade!"), div({'id': 'content'}, content))))
def render_basic(tag): return render(tag)