-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
110 lines (106 loc) · 6.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
title: The free and easy binary newsreader
---
<div class="container downloads-container content-container">
<div class="row">
<div class="col-md-6 main-logo">
<img src="/images/logo-full.svg" alt="SABnzbd">
</div>
<div class="col-md-6 downloads-row">
<div class="download-buttons-wrapper">
<div class="download-stable">
<a class="download-button" href="https://github.com/sabnzbd/sabnzbd/releases/tag/{{ site.latest_stable }}">
<span class="glyphicon glyphicon-circle-arrow-down"></span>
<h4>SABnzbd {{ site.latest_stable }}</h4>
<strong class="download-os">Browse packages</strong>
</a>
<a class="download-extra" href="/downloads">Downloads for other platforms {% if site.latest_testing != '' %}and pre-releases{% endif %}</a>
</div>
<div class="linux-row">
<span class="glyphicon glyphicon-info-sign"></span>
<a href="/wiki/installation/install-unix">Repositories and packages for Linux systems</a>
</div>
</div>
</div>
</div>
</div>
{% include download_buttons.html %}
<div class="main-wrapper content-container">
<div id="main-container" class="container">
<div class="row text-center" id="banner-wide">
{% include ad_horizontal.html %}
</div>
<div class="row text-center">
<h1 id="frontpage-slogan">Free and easy binary newsreader</h1>
</div>
<div class="row highlights-row">
<div class="col-md-6">
<img class="highlights" src="/images/landing/os-logos.png" alt="It runs anywhere" />
<h3>It runs anywhere</h3>
<p>SABnzbd runs on <a href="/downloads">Windows</a>, <a href="/downloads">macOS</a>, <a href="/wiki/installation/install-unix">Unix</a> and <a href="/wiki/installation/install-nas">NAS devices</a>.
You can access and manage SABnzbd from any device with a web browser, including iOS and Android phones and tablets.</p>
<div class="clearfix"></div>
</div>
<div class="col-md-6">
<img class="highlights" src="/images/landing/small-and-large-screens.png" alt="Small and large screens" />
<h3>Small and large screens</h3>
<p>With the responsive Glitter interface, you can access SABnzbd and manage your downloads from any device: desktop, tablet or phone. Others have made Android/iOS (<a href="https://www.lunasea.app/" target="_blank">LunaSea</a>), Android (<a href="https://nzb360.com/" target="_blank">nzb360</a>) and iOS (<a href="https://nzbunity.dozenzb.com/" target="_blank">nzbUnity</a>) apps to manage SABnzbd.</p>
<div class="clearfix"></div>
</div>
</div>
<div class="row highlights-row">
<div class="col-md-6">
<img class="highlights" src="/images/landing/integrates-with-other-tools.png" alt="Integrates with other tools" />
<h3>Integrates with other tools</h3>
<p>Apps like <a href="https://sonarr.tv/" target="_blank">Sonarr</a>, <a href="https://sickchill.github.io/" target="_blank">SickChill</a>, <a href="https://radarr.video/" target="_blank">Radarr</a>, <a href="https://github.com/rembo10/headphones" target="_blank">Headphones</a>, <a href="https://lidarr.audio/" target="_blank">Lidarr</a> and <a href="/wiki/extensions-for-sabnzbd">more</a> can integrate with SABnzbd and automate your download process.<br/>
SABnzbd can also read and process <a href="/wiki/configuration/{{ site.wiki_version }}/rss">RSS feeds</a>, activate <a href="/wiki/configuration/{{ site.wiki_version }}/scripts/post-processing-scripts">custom scripts</a> and <a href="/wiki/configuration/{{ site.wiki_version }}/notifications">notify</a> you.</p>
<div class="clearfix"></div>
</div>
<div class="col-md-6">
<img class="highlights" src="/images/landing/languages.png" alt="In 16 languages"/>
<h3>In 16 languages</h3>
<p>SABnzbd now ships with <strong>16 localizations</strong>: <br/>English, Dansk, Deutsch, Español (castellano), Français, Nederlands, Norsk bokmål, Polski, Português Brasileiro, Româna, Suomi, Svenska, русский язык, српски, עִבְרִית‎, 简体中文.</p>
<div class="clearfix"></div>
</div>
</div>
<div class="row padding-row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Screenshots</h2>
<ul id="frontpage-slideshow">
{% for screenshot in site.data.screenshots %}
<li>
<a href="/images/landing/screenshots/{{ screenshot.file }}" data-featherlight="image">
<img src="/images/landing/screenshots/{{ screenshot.file }}" alt="{{ screenshot.title | strip_html }}">
</a>
<strong>{{ screenshot.title }}</strong>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row padding-row">
<div class="col-md-12 text-center">
<h4>SABnzbd is Open Source Software; it's free as in speech and free as in beer.<br/>
As it's open source you can inspect it, and develop your own code</h4>
</div>
</div>
</div>
</div>
<script src="/js/lightslider.min.js"></script>
<script src="/js/featherlight.min.js"></script>
<script type="text/javascript">
// Slideshow only for frontpage
$(document).ready(function() {
if($("#frontpage-slideshow").length) {
$('#frontpage-slideshow').lightSlider({
auto:true,
item:2,
galleryMargin: 15,
loop:true,
pause: 4000,
nextHtml: '<span class="glyphicon glyphicon-menu-right"></span>',
prevHtml: '<span class="glyphicon glyphicon-menu-left"></span>'
});
}
})
</script>