pcs-website-test/lektor/lektordata/project/index.html
2024-11-16 09:20:49 +01:00

73 lines
1.6 KiB
HTML

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="static/style.css">
<title>Welcome to PCS! — PCS</title>
<body>
<header>
<h1>PCS</h1>
<nav>
<ul class="nav navbar-nav">
<li class="active"><a href="./">Home</a></li>
<li><a href="termine/">Termine</a></li>
<li><a href="about/">About</a></li>
</ul>
</nav>
</header>
<div class="page">
<h2>Welcome to PCS!</h2>
<p>This is a basic demo website that shows how to use Lektor for a basic
website with some pages.</p>
</div>
<footer>
&copy; Copyright 2024 by PC Stammertal.
</footer>
</body>
<style type="text/css">
#lektor-edit-link {
position: fixed;
z-index: 9999999;
right: 10px;
top: 10px;
position: fixed;
margin: 0;
font-family: 'Verdana', sans-serif;
background: #eee;
color: #77304c;
font-weight: normal;
font-size: 32px;
padding: 0;
text-decoration: none!important;
border: 1px solid #ccc!important;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
opacity: 0.7;
}
#lektor-edit-link:hover {
background: white!important;
opacity: 1.0;
border: 1px solid #aaa!important;
}
</style>
<script type="text/javascript">
(function() {
if (window != window.top) {
return;
}
var link = document.createElement('a');
link.setAttribute('href', "/admin/edit?path=/");
link.setAttribute('id', 'lektor-edit-link');
link.innerHTML = '✎';
document.body.appendChild(link);
})();
</script>