{% if title %}
{{title}} - microblog
{% else %}
microblog
{% endif %}
{% if g.locale != 'en' %} {% endif %}
microblog
{{ _('Home') }}
{% if g.user.is_authenticated() %}
{{ _('Your Profile') }}
{{ _('Logout') }}
{% endif %}
{% if g.user.is_authenticated() and g.search_enabled %}
{{g.search_form.hidden_tag()}}{{g.search_form.search(size=20,placeholder=_('Search'),class="search-query")}}
{% endif %}
{% block content %}{% endblock %}