Files
appchk-web/templates/base.html
2020-08-23 21:22:21 +02:00

53 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=0.75" />
<script type="text/javascript" src="/static/script.js"></script>
<title>#_TITLE_#AppCheck: Privacy Monitor</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
<link rel="stylesheet" type="text/css" href="/static/fonts/font.css">
<link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png">
<link rel="manifest" href="/static/favicon/site.webmanifest">
<link rel="mask-icon" href="/static/favicon/safari-pinned-tab.svg" color="#000000">
<link rel="shortcut icon" href="/static/favicon/favicon.ico">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/static/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<header>
<ul id="main-nav">
<li><a href="/index/page/1">All Apps</a></li>
<li><a href="#">About</a></li>
</ul>
<h1><a href="/"><img src="/static/logo.svg" alt="logo" width="50" height="50"> AppCheck <span> Privacy Monitor</span></a></h1>
</header>
<main>
#_CONTENT_#
</main>
<footer>
<div class="col3">
<div>
<h4>About</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div>
<h4>Feedback</h4>
<p>We are curious to receive your feedback. Please do not hesitate to contact us if you observe any errors.</p>
</div>
<div>
<h4>Beta Status</h4>
<p>AppCheck is still in its early stages. While we're giving our very best, we currently cannot guarantee the accuracy of the displayed results.</p>
</div>
</div>
<div class="links">
<a href="https://privacyscore.org/privacypolicy/">Privacy Policy</a> ·
<a href="https://privacyscore.org/imprint/">Imprint / Impressum</a>
</div>
</footer>
</body>
</html>