-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathhome.html
179 lines (155 loc) · 4.87 KB
/
home.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
---
layout: default
title: tus - resumable file uploads
container: "none"
homepage: true
is_home: true
permalink: /
---
<section class="intro">
<div class="container">
<img class="banner" src="/assets/img/tus1--no-io.png" alt="tus - Resumable File Uploads" />
</div>
<div class="mission">
<div class="container">
<p>
People are sharing more and more photos and videos every day. Mobile networks
remain fragile however. Platform APIs are also often a mess and every project builds its own file
uploader. There are a thousand one-week projects that barely work, when all we need
is one real project. One project done right.
</p>
<p>
We are the ones who are going to do this right. Our aim is to solve the problem of unreliable file uploads once
and for all. tus is a new open
<a href="/protocols/resumable-upload.html">protocol for resumable uploads</a>
built on HTTP. It offers simple, cheap and reusable stacks for clients and servers.
It supports any language, any platform and any network.
</p>
<p>
It may seem to be an impossible dream. Perhaps that is because no-one has managed to solve it yet.
Still, we are confident and we are going to give it our best shot.
<a target="" href="https://github.com/tus">Join us on GitHub</a> and
help us make the world a better place. Say "No!" to lost cat videos! Say "Yes!" to tus!
</p>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
{% for feat in site.data.features %}
{% if forloop.index0 == 3 %}
</div>
<div class="row">
{% endif %}
<div class="four columns feature">
<h4>{{feat.title}}</h4>
<div>{{feat.content | markdownify }}</div>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="centered">
<div class="container">
<h2>Say Hello :wave:</h2>
<div class="Social">
<p>
We are still actively improving the protocol and all of its implementations. We welcome
your involvement and are happy to answer any question!
<br />
<br />
</p>
{% include social.html %}
</div>
</div>
</section>
<section class="centered">
<div class="container">
<h2>Official implementations</h2>
<div>
{% for impl in site.data.implementations %}
<div class="implementation">
<a href="https://github.com/{{impl.repo}}">
<img src="/assets/img/{{impl.icon}}.svg" alt="Support for {{impl.name}}" />
{{impl.name}}
</a>
</div>
{% endfor %}
</div>
<div class="implementations-link">
Additionally, there are many other <a href="/implementations.html">projects</a> built
and maintained by our community.
</div>
</div>
</section>
<section>
<div class="container">
<h2>Blog posts</h2>
<ol class="posts">
{% for post in site.posts limit:5 %}
{% assign author = site.data.authors[post.author] %}
<li>
<div class="author">
<a href="https://twitter.com/{{author.twitter}}" title="{{ author.name }}">
<img
src="https://secure.gravatar.com/avatar/{{author.gravatar}}&s=64"
class="gravatar"
alt="{{ author.name }}">
</a>
</div>
<div class="post-title">
<div class="date">
{{ post.date | date: "%b %e, %Y" }}
</div>
<h3>
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
</div>
</li>
{% endfor %}
</ol>
</div>
</section>
<section class="centered who-is-using">
<div class="container ">
<h2>Who is using tus?</h2>
<div class="row logos">
{% for logo in site.data.logos limit:5 %}
<a href="{{ logo.url }}" title="{{ logo.name }}">
<img src="{{ logo.src }}" alt="{{ logo.name }}">
</a>
{% else %}
There are no company logos!
{% endfor %}
</div>
<div class="row">
<p class="companies-link" markdown="1">
Do you also (plan to) use tus?
<a href="https://github.com/tus/tus.io/edit/master/_data/logos.yml">Add your company</a>
</p>
</div>
</div>
</section>
<section>
<div class="container">
<div class="on-the-githubs-container">
<h2>On the GitHubs</h2>
<div class="on-the-githubs" data-event-source="orgs/tus">
Loading...
</div>
</div>
</div>
</section>
<section class="centered">
<div class="container">
<h2>As seen on</h2>
<div class="row logos logos--press">
{% for logo in site.data.press limit:12 %}
<a href="{{ logo.url }}" title="{{ logo.name }}"><img src="{{ logo.src }}" alt="{{ logo.name }}"></a>
{% else %}
There are no press publications!
{% endfor %}
</div>
</div>
</section>