39 lines
1.8 KiB
Twig
39 lines
1.8 KiB
Twig
{% extends 'tools/whois/master.twig' %}
|
|
|
|
{% set header_title = 'whois' %}
|
|
{% set header_logo_flash = 'flash.moe ' %}
|
|
{% set header_logo_wave = 'whois' %}
|
|
{% set master_breadcrumbs = [{ url: '/tools', text: 'tools' }, { url: '/tools/whois', text: 'whois' }] %}
|
|
|
|
{% block column_left %}
|
|
<div class="sidelist">
|
|
<div class="sidelist-title">About</div>
|
|
<div class="sidelist-body">
|
|
<p>WHOIS is protocol that allows you to query information about a domain name.</p>
|
|
<p>A while ago I was interested in figuring out how to pull WHOIS data myself and a lot of existing WHOIS lookup services have annoying page designs or advertisements scattered all about the place, so this tool has become a bit of a mainstay.</p>
|
|
<p>Results are cached for a period as to not upset our benefactors too much and past lookups remain visible in the list below, but please do still consume responsibly!</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="sidelist js-whois-sidelist">
|
|
<div class="sidelist-title">History</div>
|
|
<div class="sidelist-body">
|
|
<div class="sidelist-empty">
|
|
<div class="sidelist-empty-icon">※</div>
|
|
<div class="sidelist-empty-label">Nothing yet!</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block column_centre %}
|
|
<form class="whois-lookup-form js-whois-form">
|
|
<input class="whois-lookup-form-input js-whois-input" type="text" name="domain" placeholder="Enter a domain or IP address to look up!" value="">
|
|
<input class="whois-lookup-form-submit js-whois-submit" type="submit" value="Look up">
|
|
</form>
|
|
|
|
<div class="whois-result-container">
|
|
<div class="whois-result-tabs js-whois-tabs"></div>
|
|
<div class="whois-result js-whois-body"></div>
|
|
</div>
|
|
{% endblock %}
|