{% extends "_page.twig" %} {% block title %}Search host{% endblock %} {% block content %}
{% if result|length > 0 %}

Query result for "{{ query }}"

Note: only first {{ limit }} record(s) are shown
{% if result.error|length > 0 %}
{{ result.error }}
{% else %} {% for host in result %} {% endfor %}
Domain AH B32 Full Base32 Last seen
{{ host.host }} A B {{ host.base32 }} {{ host.last_seen != '0000-00-00 00:00:00' ? host.last_seen : 'Never' }}
{% endif %} {% endif %}

Search domain

{% endblock %}