diff --git a/resources/views/rss/rssdesc.blade.php b/resources/views/rss/rssdesc.blade.php index f04ea66ec..3a0db3199 100644 --- a/resources/views/rss/rssdesc.blade.php +++ b/resources/views/rss/rssdesc.blade.php @@ -1,211 +1,237 @@ @extends('layouts.main') @section('content') -
-
-

{{ $title }}

+
+
+

+ {{ $title }} +

-
-

+

+

Here you can find RSS feeds for various categories and content types. These feeds provide either descriptions or direct NZB downloads based on your preferences.

@if($loggedin ?? false) -
-

Your API Token

-
- -
@endif -

RSS Configuration Options

-
- - +

+ RSS Configuration Options +

+
+
+ - - - + + + - - - - - + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + +
ParameterDescriptionExampleParameterDescriptionExample
api_tokenAdd this to your feed URL to allow NZB downloads without logging in&api_token={{ $userdata->api_token ?? 'YOUR_TOKEN' }}
api_tokenAdd this to your feed URL to allow NZB downloads without logging in&api_token={{ $userdata->api_token ?? 'YOUR_TOKEN' }}
del=1Remove NZB from your cart after download&del=1
del=1Remove NZB from your cart after download&del=1
dl=1Change the default link to download an NZB&dl=1
dl=1Change the default link to download an NZB&dl=1
num=50Change the number of results returned (default: 25, max: 100)&num=50
num=50Change the number of results returned (default: 25, max: 100)&num=50
airdate=20Return TV shows only aired in the last x days (default: all)&airdate=20
airdate=20Return TV shows only aired in the last x days (default: all)&airdate=20
-
- +
+ Most NZB clients which support NZB RSS feeds will appreciate the full URL, with download link and your user token. The feeds include additional attributes to help provide better filtering in your NZB client, such as size, group, and categorization.
-
- +
+ Pro Tip: If you want to chain multiple categories together or do more advanced searching, use the - API, which returns its data in an RSS-compatible format. + API, which returns its data in an RSS-compatible format.
-

Available Feeds

+

+ Available Feeds +

-
-
-
General Feeds
+
+
+
+ General Feeds +
-
-
-
-
- Full Site Feed - - Open Feed - -
-
- - -
- You can define limit and num parameters, which will decide how many items to show and what offset to use (default values: limit 100 and offset 0). +
+
+
+ + Full Site Feed + + + Open Feed +
- -
-
- My Cart Feed - - Open Feed - -
-
- - -
+
+ +
+ You can define limit and num parameters, which will decide how many items to show and what offset to use (default values: limit 100 and offset 0). +
-
-
- My Shows Feed - - Open Feed - -
-
- - -
+
+
+ + My Cart Feed + + + Open Feed +
+
+ + +
+
-
-
- My Movies Feed - - Open Feed - -
-
- - -
+
+
+ + My Shows Feed + + + Open Feed + +
+
+ + +
+
+ +
+
+ + My Movies Feed + + + Open Feed + +
+
+ +
-
-
-
-
-
Parent Categories
-
-
-
- @foreach($parentcategorylist ?? [] as $category) -
-
- {{ $category['title'] }} - - Open Feed - -
-
- - -
-
- @endforeach +
+
+
+
+ Parent Categories +
+
+
+ @forelse($parentcategorylist ?? [] as $category) +
+
+ + {{ $category['title'] }} + + + Open Feed + +
+
+ + +
-
+ @empty +
+ +

No parent categories available

+
+ @endforelse
-
-
-
-
Sub Categories
-
-
-
- @foreach($categorylist ?? [] as $category) - @if(!empty($category['title'])) -
-
- {{ $category['title'] }} - - Open Feed - -
-
- - -
-
- @endif - @endforeach +
+
+
+ Sub Categories +
+
+
+ @forelse($categorylist ?? [] as $category) + @if(!empty($category['title'])) +
+
+ + {{ $category['title'] }} + + + Open Feed + +
+
+ + +
+
+ @endif + @empty +
+ +

No sub categories available

-
+ @endforelse
@@ -215,23 +241,38 @@ @push('scripts')