## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%block name="title"> ${_('New Gist')} <%block name="js_extra"> <%block name="css_extra"> <%def name="breadcrumbs_links()"> ${_('New Gist')} <%block name="header_menu"> ${self.menu('gists')} <%def name="main()">
${self.breadcrumbs()}
${h.form(h.url('gists'), method='post',id='eform')}
${h.gravatar(c.authuser.email, size=32)}
${h.select('lifetime', '', c.lifetime_options)}
${h.text('filename', size=30, placeholder=_('name this file...'))}
${h.submit('private',_('Create Private Gist'),class_="btn btn-mini btn-success")} ${h.submit('public',_('Create Public Gist'),class_="btn btn-mini")} ${h.reset('reset',_('Reset'),class_="btn btn-mini")}
${h.end_form()}