Kumi
f4c16f3b63
Expanded the footer to include a detailed privacy disclaimer emphasizing the service's privacy-focused nature and transparency about data handling. Mentioned the open-source status and provided a link to the source code. This improves user trust by informing them about data privacy practices and potential risks. No issue references.
87 lines
2.7 KiB
HTML
87 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
/>
|
|
<title>nocdnbs</title>
|
|
<link
|
|
href="https://nobsdelivr.private.coffee/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
.hero {
|
|
background: gray;
|
|
color: white;
|
|
padding: 100px 0;
|
|
}
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
}
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
}
|
|
.example-code {
|
|
background-color: #e9ecef;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="hero text-center">
|
|
<div class="container">
|
|
<h1 class="display-4">Welcome to nocdnbs</h1>
|
|
<p class="lead">
|
|
nobsdelivr is a simple proxy to cdnjs.cloudflare.com. Use it to proxy your
|
|
requests to the CDN.
|
|
</p>
|
|
</div>
|
|
</header>
|
|
<main class="container text-center my-5">
|
|
<p class="lead">
|
|
To use the proxy, simply replace
|
|
<code>https://cdnjs.cloudflare.com/</code> with <code>{{ domain }}</code> in
|
|
the URL.
|
|
</p>
|
|
<p>Example:</p>
|
|
<div class="example-code">
|
|
<code>{{ domain }}ajax/libs/mathjax/2.7.9/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot</code>
|
|
</div>
|
|
</main>
|
|
<footer class="text-center py-4">
|
|
<div class="container">
|
|
<h2>Privacy / Disclaimer</h2>
|
|
<p>
|
|
noCDNbs is a privacy-focused service. It does not track you or log
|
|
any data. It creates a fully separate connection to Cloudflare for
|
|
each request, so Cloudflare does not see your IP address or any other
|
|
information about you.
|
|
</p>
|
|
<p>
|
|
Please note that we cannot guarantee that files served through this
|
|
proxy do not contain tracking or other privacy-invading code, or that
|
|
they do not cause your browser to connect to third-party servers. The
|
|
best way to protect your users' privacy is to host the fonts on your
|
|
own server.
|
|
</p>
|
|
<p>
|
|
The service is open-source and you can view the source code on
|
|
<a href="https://git.private.coffee/privatecoffee/nocdnbs"
|
|
>Private.coffee Git</a
|
|
>.
|
|
</p>
|
|
<p>
|
|
Brought to you by <a href="https://private.coffee">Private.coffee</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
<script src="https://nobsdelivr.private.coffee/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|