Denperidge 5ca05af8a0 [feat] Added skip link, improved HTML landmark usage
style.less
- Added .skip-link & .sr-only

base.html
- Added skip-link
- Added optional skip_link_id block
- Added header element
- main -> div, as it's a full application container and not the main content

404.html
- div -> main

index.html
- div -> main

preferences.html
- added main

results.html
- Added skip_link_id to "results"
- Moved search.html to header block
- div#results -> main#results
- div#sidebar -> aside#sidebar
2025-02-26 15:15:56 +01:00

9 lines
246 B
HTML

{% extends "simple/base.html" %}
{% from 'simple/icons.html' import icon_big %}
{% block content %}
<main id="main" class="index">
<div class="title"><h1>SearXNG</h1></div>
{% include 'simple/simple_search.html' %}
</main>
{% endblock %}