ADD UPDATE SCRIPT v0.23

This commit is contained in:
Esteban
2026-07-06 12:17:38 +02:00
parent 1d134c38cd
commit ea284a426f
18 changed files with 446 additions and 16 deletions
+30 -1
View File
@@ -1,4 +1,7 @@
@extends('layouts.marketing', ['title' => 'BloomFeed'])
@extends('layouts.marketing', [
'title' => __('app.seo_home_title'),
'description' => __('app.meta_description'),
])
@php
// Screenshots live under images/screenshots/{locale}/ so each language can show its own
@@ -129,4 +132,30 @@
</section>
<script src="{{ asset('js/screenshot-gallery.js') }}" defer></script>
@push('structured-data')
<script type="application/ld+json">
{
"@@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "BloomFeed",
"applicationCategory": "CommunicationApplication",
"operatingSystem": "Linux (Docker)",
"description": {!! json_encode(__('app.meta_description')) !!},
"url": {!! json_encode(url('/')) !!},
"image": {!! json_encode(asset('images/logo.png')) !!},
"license": "https://opensource.org/licenses/MIT",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "BloomFeed",
"url": {!! json_encode(url('/self-hosting')) !!}
}
}
</script>
@endpush
@endsection