This repository has been archived on 2025-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
asklyphe-frontend/templates/search.html

100 lines
No EOL
4.6 KiB
HTML

{% extends "shell.html" %}
{% block title %}{{ search_query }}{% endblock %}
{% block head %}
<link rel="stylesheet" href="/static/themes/default/search.css"/>
<link rel="stylesheet" href="/static/themes/{{theme}}/search.css"/>
{% if search_query == "notnite" %}<link rel="stylesheet" href="/static/creature.css"/>{% endif %}
{% endblock %}
{% block page %}
<div class="main">
{% include "ui/userbar.html" %}
{% if alpha %}<span id="alpha-warning">WARNING! askLyphe is in alpha! user experience is in no way representative of the final product!</span>{% endif %}
{% include "ui/navbar.html" %}
<div class="index-bar">
<a href="{{ websearch_url }}">
<img id="websearch-img-selected" src="/static/img/websearch_selected.png" alt="search the web"/>
</a>
<a href="{{ imagesearch_url }}">
<img id="imagesearch-img" src="/static/img/imagesearch.png" alt="search for images"/>
</a>
</div>
<div class="pagecontent">
<div class="pagegradient">
<div class="response">
{% match error %}
{% when Some with (val) %}
<div class="error">{{ val }}</div>
{% when None %}
{% match note %}
{% when Some with (val) %}
<div class="note">{{ val }}</div>
{% when None %}
{% endmatch %}
<div class="stats">found {{ search_results.len() }} results in {{ query_time }} seconds ({{
page_rank_time
}} was pageranking)
</div>
<div class="results-area">
<div class="complications">
{% if complications.disabled %}
<div class="complications-note">
<span>complications disabled for this query</span>
</div>
{% endif %}
{% match complications.unit_converter %}
{% when Some with (conversion) %}
<div class="unit_converter-complication">
<span class="unit_converter-title">lyphe unit converter</span>
<span class="unit_converter-result">{{ conversion.value }} {{ conversion.unit_a }} = {{ conversion.equals }} {{ conversion.unit_b }}</span>
</div>
{% when None %}
{% endmatch %}
{% match complications.wikipedia %}
{% when Some with (wikipedia) %}
<div class="wikipedia-complication">
<a href="{{ wikipedia.url }}">
<div class="wikipedia-header">
<span class="wikipedia-title">{{ wikipedia.title }}</span>
<span class="wikipedia-fromwikipedia">from wikipedia, the free encyclopedia that anyone can edit</span>
</div>
{% match wikipedia.image %}
{% when Some with (image) %}
<div class="wikipedia-image">
<img src="{{ image }}" alt="wikipedia thumbnail image for {{ wikipedia.title }}"/>
</div>
{% when None %}
{% endmatch %}
</a>
<span class="wikipedia-class">{{ wikipedia.description }}</span>
<span class="wikipedia-description">{{ wikipedia.extract }}</span>
</div>
{% when None %}
{% endmatch %}
</div>
<ol class="search-result-list">
{% for result in search_results %}
{% include "ui/search_result.html" %}
{% endfor %}
</ol>
{% if blocked.len() > 0 %}
<span class="blocked-header">{{ blocked.len() }} results were pruned from search results for the following reasons:</span>
<ol class="blocked-results">
{% for (url, reason) in blocked %}
<li>"{{ url }}" because "{{ reason }}"</li>
{% endfor %}
</ol>
{% endif %}
</div>
{% endmatch %}
</div>
</div>
</div>
{% include "ui/footer.html" %}
</div>
{% endblock %}