2024-09-14 22:13:17 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-09-10 04:54:33 +08:00
|
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
|
2024-09-14 21:31:56 +08:00
|
|
|
<ShortName>{{ mb_strimwidth(setting('app-name'), 0, 16) }}</ShortName>
|
2024-09-14 21:43:46 +08:00
|
|
|
<Description>{{ trans('common.opensearch_description', ['appName' => setting('app-name')]) }}</Description>
|
2024-09-10 04:54:33 +08:00
|
|
|
<Image width="256" height="256" type="image/png">{{ setting('app-icon') ?: url('/icon.png') }}</Image>
|
|
|
|
<Image width="180" height="180" type="image/png">{{ setting('app-icon-180') ?: url('/icon-180.png') }}</Image>
|
|
|
|
<Image width="128" height="128" type="image/png">{{ setting('app-icon-128') ?: url('/icon-128.png') }}</Image>
|
|
|
|
<Image width="64" height="64" type="image/png">{{ setting('app-icon-64') ?: url('/icon-64.png') }}</Image>
|
|
|
|
<Image width="32" height="32" type="image/png">{{ setting('app-icon-32') ?: url('/icon-32.png') }}</Image>
|
2024-09-14 21:24:42 +08:00
|
|
|
<Url type="text/html" rel="results" template="{{ url('/search') }}?term={searchTerms}"/>
|
2024-09-10 04:54:33 +08:00
|
|
|
<Url type="application/opensearchdescription+xml" rel="self" template="{{ url('/opensearch.xml') }}"/>
|
|
|
|
</OpenSearchDescription>
|