28 lines
866 B
HTML
28 lines
866 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="columns is-centered">
|
|
<div class="column is-11-tablet is-10-desktop is-9-widescreen">
|
|
<div class="is-flex is-justify-content-space-between is-align-items-center">
|
|
<div>
|
|
<h1 class="title is-4">Search</h1>
|
|
<p class="subtitle is-6">
|
|
Search across OSINT objects with sortable, paginated results.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<button
|
|
class="button is-light"
|
|
hx-get="{{ search_widget_url }}"
|
|
hx-target="#widgets-here"
|
|
hx-swap="beforeend"
|
|
onclick="document.getElementById('widgets-here').style.display = 'block';">
|
|
Open Widget
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% include "partials/osint/search-panel.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|