mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 14:08:37 -05:00
22 lines
540 B
HTML
22 lines
540 B
HTML
![]() |
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
Search | {{ config.title }}
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block header_menu %}
|
||
|
{{ menu_macros::menu_for(config=config, current_item="") }}
|
||
|
{% endblock header_menu %}
|
||
|
|
||
|
{% block content %}
|
||
|
<link href="/pagefind/pagefind-ui.css" rel="stylesheet">
|
||
|
<script src="/pagefind/pagefind-ui.js"></script>
|
||
|
|
||
|
<div id="search"></div>
|
||
|
<script>
|
||
|
window.addEventListener('DOMContentLoaded', (event) => {
|
||
|
new PagefindUI({ element: "#search", showSubResults: true });
|
||
|
});
|
||
|
</script>
|
||
|
{% endblock content %}
|