{% extends "man.html" %} {% block content %}

~{{ user.username }}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %} {{user.bio | md}} {% endif %} {% if current_user and current_user.username == user.username %} Create new wiki {{icon("caret-right")}} {% endif %} {% if notice %}
{{ notice }}
{% endif %}
{% if len(wikis) == 0 %} {% if search %}

Nothing found.

{% else %}

This user has no wikis.

{% endif %} {% else %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% for wiki in wikis %}

~{{user.username}}/{{wiki.name}} {% if wiki.visibility.value != 'public' %} {{ wiki.visibility.value }} {% endif %}

{% endfor %}
{% endif %} {{ pagination() }}
{% endblock %}