~ small fixes - db, hello - web.xml Signed-off-by: Johannes Theiner <j.theiner@live.de>
81 lines
2.7 KiB
HTML
81 lines
2.7 KiB
HTML
<footer>
|
|
<nav>
|
|
<div class="m-container">
|
|
<div class="m-row">
|
|
<div class="m-col-s-3 m-col-t-6">
|
|
<h3>Hilfe</h3>
|
|
<ul>
|
|
<li><a href="#">FAQ</a></li>
|
|
<li><a href="#">Rückgabe</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="m-col-s-3 m-col-t-6">
|
|
<h3>Zahlung</h3>
|
|
<ul>
|
|
<li><a href="#">Kreditkarten</a></li>
|
|
<li><a href="#">Gutscheine</a></li>
|
|
<li><a href="#">Bankeinzug</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="m-clearfix-t"></div>
|
|
<div class="m-col-s-3 m-col-t-6">
|
|
<h3>Amazon light</h3>
|
|
<ul>
|
|
<li><a href="#">Über</a></li>
|
|
<li><a href="#">Kontakt</a></li>
|
|
<li><a href="#">Presse</a></li>
|
|
<li><a href="#">Jobs</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="m-col-s-3 m-col-t-6">
|
|
<h3>Rechtliches</h3>
|
|
<ul>
|
|
<li><a href="https://joethei.xyz/imprint">Impressum</a></li>
|
|
<li><a href="https://joethei.xyz/privacy">Datenschutz</a></li>
|
|
<li><a href="https://joethei.xyz/disclaimer">Haftung</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="m-row">
|
|
<div class="m-col-l-10 m-push-l-1">
|
|
<p>Amazon light. Copyright © <a href="#">B1</a>,
|
|
2019. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
|
|
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
|
|
<script>
|
|
function changeTheme() {
|
|
|
|
if(document.getElementById('myonoffswitch').checked) {
|
|
swapStyleSheet("dark", "#22272e");
|
|
}else {
|
|
swapStyleSheet("light", "#cb4b16");
|
|
}
|
|
|
|
}
|
|
|
|
function swapStyleSheet(sheet, color) {
|
|
document.getElementById("pagestyle").setAttribute("href", "css/m-" + sheet + ".css");
|
|
document.getElementById("pagecolor").setAttribute("content", color);
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
$('.slider').slick({
|
|
infinite: true,
|
|
slidesToShow: 6,
|
|
slidesToScroll: 3
|
|
})
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |