This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/fragments/footer.html

36 lines
1015 B
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>e-commerce</title>
</head>
<body>
<footer class="hero-black" th:fragment="footer">
<div class='content-width bar-flex'>
<h3>Project eCommerce</h3>
<div class="spacer"></div>
<div>
<h4>Seite</h4>
<ul>
<li><a href="/login">Login</a></li>
<li><a href="/">Angebote</a></li>
<li><a href="/shop/search">Suche</a></li>
<li><a href="/intern/" th:if="${user != null && user.isEmployee}">Mitarbeiter Bereich</a></li>
</ul>
</div>
<div>
<h4>Mehr</h4>
<ul>
<li><a href="/terms">Allgemeine Geschäftsbedingungen</a></li>
<li><a href="/privacy">Datenschutzerklärung</a></li>
<li><a href="/about">Über uns</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>