-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
139 lines (128 loc) · 4.74 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
---
layout: default
scrolljs: true
---
<div class="jumbotron welcome">
<div class="container">
<div class="row justify-content-between align-items-bottom">
<div class="col-lg-5 text-center text-lg-left pb-10" style="align-self: center">
<h1>{{ site.name }}</h1>
<p>A beautiful web UI for various torrent clients.</p>
<a class="btn btn-primary text-primary" href="https://www.npmjs.com/flood">
{% include svg/download.svg %} Download</a>
<a class="btn btn-link text-white" href="{{ site.baseurl }}/blog">Blog</a>
</div>
<img alt="Home" src="assets/img/screenshot-desktop-expanded-dark.png" class="welcome-image" />
</div>
</div>
</div>
<section class="blog bg-primary-lighter">
<div class="container">
<div class="post text-lg-left">
<div>
<h2>Latest news</h2>
{% for post in site.categories.blog limit:1 %}
<h3>
<a class="fg-primary-dark" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h3>
<h6>{{ post.excerpt }}</h6>
<p>
{% include svg/clock.svg %} {{ post.date | date: '%B %d, %Y' }}{% if
post.author %} {% include svg/author.svg %} {{ post.author }}{% endif
%}
</p>
{% endfor %}
</div>
</div>
</div>
</section>
<section class="tweaks">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-lg-6">
<img alt="Screenshot mobile" src="assets/img/screenshot-mobile-expanded-dark.jpg"
class="img-fluid text-center" />
</div>
<div class="col-lg-5 text-center text-lg-left">
<h2>Touch-Ready</h2>
<p class="feature">
Flood supports touch screen devices.
<br /><br />
Responsive. Collapsible sidebar.
<br /><br />
Smooth, awesome experience on any device.
</p>
</div>
</div>
</div>
</section>
<section class="theme bg-dark">
<div class="container">
<div class="row justify-content-between align-items-center">
<div id="theme-img" class="col-lg-7 order-lg-last light">
<br /><br />
<img alt="theme" src="assets/img/screenshot-desktop-expanded-light.png" class="img-fluid img-light text-center"
style="max-height: 640px;">
<img alt="theme" src="assets/img/screenshot-desktop-expanded-dark-2.png" class="img-fluid img-dark text-center"
style="max-height: 640px;">
<script type="text/javascript">
function swapImage() {
const themeImgDivElement = document.getElementById("theme-img");
if (themeImgDivElement.className.endsWith('light')) {
themeImgDivElement.className = themeImgDivElement.className.replace('light', 'dark')
} else {
themeImgDivElement.className = themeImgDivElement.className.replace('dark', 'light')
}
}
setInterval(() => { swapImage() }, 1200)
</script>
<br /><br />
</div>
<div class="col-lg-4 text-center text-lg-left text-white">
<h2>Light and Dark</h2>
<p class="feature">
Both light and dark color schemes are supported.
<br /><br />
By default, Flood follows the theme of your system.
<br /><br />
Or, switch to your favorite theme at the click of a button.
<br /><br />
</p>
</div>
</div>
</div>
</section>
<section class="tools bg-dark section-background-image parallax">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-lg-4 text-center text-lg-left text-white">
<h2>Localization</h2>
<p class="feature">
20+ languages are supported.
<br /><br />
Flood detects your browser language preferences and automatically
switches to your preferred language.
<br /><br />
And, of course, you can still tell Flood to use a specific language.
<br /><br />
Thanks to the integration with renowned translation management system
<a href="https://crwd.in/flood">Crowdin</a>, it is easier than ever to
<a href="https://crwd.in/flood">contribute your translations to Flood</a>.
</p>
</div>
</div>
</div>
</section>
<section class="download bg-primary" style="margin-bottom: -3rem">
<div class="container">
<div class="text-center">
<div class="logo">
<img alt="Logo" src="assets/img/logo.png" class="download-logo-image" />
</div>
<h2>Ready? Get Flood now!</h2>
<a class="btn btn-primary" href="https://www.npmjs.com/flood">
{% include svg/download.svg %} Download
</a>
</div>
</div>
</section>