-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpresentation.html
107 lines (89 loc) · 5.13 KB
/
presentation.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
<!DOCTYPE html>
<html>
<head>
<title>OPDS Presentation</title>
<meta name="description" content="Understand why OPDS was created, and how it can enable an open and decentralized alternative to platform lock-in." />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<!-- Bootstrap -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" />
<!-- Site CSS -->
<link href="css/opds.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<!-- Navigation -->
<div class="row-fluid hidden-phone">
<a href="index.html"><img src="img/logo.png" alt="Open Publication Distribution System" title="Open Publication Distribution System" /></a>
<ul class="nav nav-pills pull-right">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="presentation.html">Presentation</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="https://specs.opds.io">Specifications</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Resources <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="https://test.opds.io">Test a client</a></li>
<li><a href="http://opds-validator.appspot.com/">Validate a catalog</a></li>
<li><a href="http://github.com/search?q=OPDS&start_value=1&type=Repositories">Search on GitHub</a></li>
</ul>
</li>
<li><a href="http://groups.google.com/group/openpub">Discussions</a></li>
</ul>
</div>
<div class="row-fluid visible-phone center">
<a href="index.html"><img src="img/logo.png" alt="Open Publication Distribution System" title="Open Publication Distribution System" /></a>
</div>
<hr class="hidden-phone" />
<!-- Presentation -->
<div class="row-fluid append1">
<h1>Presentation</h1>
<hr />
<p class="lead"><a href="http://groups.google.com/group/openpub">The OPDS Working Group</a> started this project in 2009 and has released <a href="http://opds-spec.org">several versions of its specification</a> since then.</p>
<p class="lead">We created OPDS with the following things in mind:</p>
</div>
<!-- Main content -->
<div class="row-fluid append1">
<div class="featurette">
<img class="featurette-image pull-right" src="img/illustration1.png" alt="Girl downloading book on her tablet" />
<h2 class="featurette-heading">Easy to use</h2>
<p class="lead">Today, every user expect to instantly browse, search and download content right from their device.</p>
</div>
<div class="featurette">
<img class="featurette-image pull-left" src="img/illustration2.png" alt="Sheeps trapped in fences from Apple, Amazon and Google ecosystems" />
<h2 class="featurette-heading">Open</h2>
<p class="lead">Too often though, this ease of use comes at a huge cost: your own freedom to move from one platform to another.</p>
<p class="lead">You're not allowed to get anything in or out of these fences, and you don't actually own your content.</p>
</div>
<div class="center">
<img src="img/illustration3.png" alt="Street with a book retailer, a library and a university" />
</div>
<div class="center">
<h2>Decentralized</h2>
<p class="lead">In the physical world, we're used to acquire content from multiple places.</p>
<p class="lead">Purchasing is not the only option, we can also borrow or get a subscription.</p>
</div>
<div class="center">
<img src="img/illustration4.png" alt="Girl downloading books from book retailer, library and university" />
</div>
<div class="center append2">
<h2>Open Publication Distribution System</h2>
<p class="lead">With OPDS, you can access content from any source, on any device.</p>
<p class="lead">Any developer can create a client, any content provider can do distribution.</p>
<p class="lead">It's the best of both worlds: easy to use, yet open and decentralized.</p>
</div>
</div>
<hr />
<footer>
<p class="pull-right hidden-phone"><a href="#">Back to top</a></p>
<p>A project of the <a href="http://groups.google.com/group/openpub">OPDS Working Group</a> & <a href="http://www.feedbooks.com/">Feedbooks</a>, © <a href="http://www.lindsaygrime.co.uk/">Lindsay Grime</a> for the illustrations</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>