Skip to content

Instantly share code, notes, and snippets.

@eskp
Created February 6, 2013 00:05
Show Gist options
  • Save eskp/4718959 to your computer and use it in GitHub Desktop.
Save eskp/4718959 to your computer and use it in GitHub Desktop.
@app.route('/')
def index():
template = render_template('index.html', year=datetime.now().year)
return template
and then in template simply
{{ year }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment