-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
108 lines (83 loc) · 4.9 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="shareNice - unintrusive social sharing">
<meta name="author" content="Mischa Tuffield">
<link rel="icon" href="assets/favicon.png">
<title>shareNice</title>
<!-- Bootstrap core CSS -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<!-- Pretty font -->
<link href='https://fonts.googleapis.com/css?family=Quattrocento+Sans' rel='stylesheet' type='text/css'>
<!-- Hand rolled CSS -->
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="container">
<nav class="navbar-default clearfix">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="topMargin" id="shareNice" data-share-label="" data-icon-size="32" data-share-zindex="2147483647"/>
</div>
<div id="navbar" class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li role="presentation"><a href="/index">home</a></li>
<li role="presentation"><a href="/technical">technical info</a></li>
<li role="presentation"><a href="/demo">demo</a></li>
<li role="presentation"><a target="_blank" href="http://github.com/mischat/shareNice">source-code</a></li>
<li role="presentation" class="active"><a href="/privacy">privacy policy</a></li>
</ul>
</div>
</nav>
<div class="page-header">
<img class="img-responsive center-block" src="assets/original_image_flipped.png" />
<h1 class="text-center">uninstrusive social sharing</h1>
<p class="lead">shareNice provides website owners with a social sharing widget that does NOT track their
users. shareNice is an open-source sharing library that enables your users to share your content with their
friends without being tracking by another party.</p>
</div>
<div class="containter">
<div class="row">
<div class="col-lg-12">
<h2>Privacy Policy</h2>
<p>Empowering users by respecting their privacy is what shareNice is all about. shareNice will NEVER:</p>
<ul>
<li>drop ANY cookies on your users.</li>
<li>generate logs files on our servers.</li>
<li>collect ANY information about its or your users.</li>
<li>... as a result we have NO data to share with ANYONE.</li>
</ul>
<p>More information about how we maintain your users' privacy can be found on our <a href="/website/technical">technical information page</a>.</p>
<p>Finally is it worth mentioning that shareNice is NOT a money making venture and we have NO intention
of monetizing the way this service operates.</p>
<p>This instance of shareNice is hosted on a server provided by <a href="http://mmt.me.uk/">Mischa Tuffield</a>.</p>
</div>
</div>
</div>
<footer class="footer">
<div class="container text-center">
Hand-rolled in <a href="http://www.vim.org/">vi</a> 2015
</div>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<!-- The sharenice script -->
<script type="text/javascript" src="//sharenice.org/code.js"></script>
</body>
</html>