feat: Inertia profile settings page, Studio edit redesign, EGS, Nova UI components\n\n- Redesign /dashboard/profile as Inertia React page (Settings/ProfileEdit)\n with SettingsLayout sidebar, Nova UI components (TextInput, Textarea,\n Toggle, Select, RadioGroup, Modal, Button), avatar drag-and-drop,\n password change, and account deletion sections\n- Redesign Studio artwork edit page with two-column layout, Nova components,\n integrated TagPicker, and version history modal\n- Add shared MarkdownEditor component\n- Add Early-Stage Growth System (EGS): SpotlightEngine, FeedBlender,\n GridFiller, AdaptiveTimeWindow, ActivityLayer, admin panel\n- Fix upload category/tag persistence (V1+V2 paths)\n- Fix tag source enum, category tree display, binding resolution\n- Add settings.jsx Vite entry, settings.blade.php wrapper\n- Update ProfileController with JSON response support for API calls\n- Various route fixes (profile.edit, toolbar settings link)"
This commit is contained in:
28
resources/views/rss/feed.blade.php
Normal file
28
resources/views/rss/feed.blade.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
|
||||
<channel>
|
||||
<title>{{ htmlspecialchars($channelTitle) }}</title>
|
||||
<link>{{ $channelLink }}</link>
|
||||
<description>{{ htmlspecialchars($channelDescription) }}</description>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>{{ $buildDate }}</lastBuildDate>
|
||||
<atom:link href="{{ $feedUrl }}" rel="self" type="application/rss+xml" />
|
||||
@foreach ($artworks as $artwork)
|
||||
<item>
|
||||
<title><![CDATA[{{ $artwork->title }}]]></title>
|
||||
<link>{{ url('/art/' . $artwork->id . '/' . ($artwork->slug ?? '')) }}</link>
|
||||
<guid isPermaLink="true">{{ url('/art/' . $artwork->id . '/' . ($artwork->slug ?? '')) }}</guid>
|
||||
<pubDate>{{ $artwork->published_at?->toRfc2822String() }}</pubDate>
|
||||
<author><![CDATA[{{ $artwork->user?->username ?? 'Unknown' }}]]></author>
|
||||
@if ($artwork->description)
|
||||
<description><![CDATA[{{ strip_tags($artwork->description) }}]]></description>
|
||||
@endif
|
||||
@php $thumb = $artwork->thumbUrl('sm'); @endphp
|
||||
@if ($thumb)
|
||||
<media:thumbnail url="{{ $thumb }}" />
|
||||
<media:content url="{{ $thumb }}" medium="image" />
|
||||
@endif
|
||||
</item>
|
||||
@endforeach
|
||||
</channel>
|
||||
</rss>
|
||||
Reference in New Issue
Block a user