Adds footer for website
This commit is contained in:
parent
68f7d612e2
commit
0cba0d886c
3 changed files with 80 additions and 0 deletions
62
www/footer.html
Normal file
62
www/footer.html
Normal file
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<style>
|
||||
.tab-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: #ba289f;
|
||||
color: #fff;
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
clear: both;
|
||||
position: absolute;
|
||||
|
||||
}
|
||||
|
||||
.footer p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer table {
|
||||
margin: 0;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.footer th {
|
||||
padding-right: 3em;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: #fff;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<footer class="footer">
|
||||
<table>
|
||||
<tr>
|
||||
<th><a href="https://ag-link.xyz/impressum">Impressum</a> </th>
|
||||
<th><a href="https://ag-link.xyz/feed.xml">RSS</a> </th>
|
||||
<th><a href="https://lediver.se/@link">Mastodon</a> </th>
|
||||
<th><a href="https://git.ag-link.xyz/">Git</a> </th>
|
||||
</tr>
|
||||
</table>
|
||||
<p>2023 AG Link. Die von uns verfassten Inhalte stehen, soweit nicht anders vermerkt, unter der Lizenz <a
|
||||
href="https://creativecommons.org/licenses/by-nc-sa/4.0/"> Creative Commons BY-NC-SA 4.0</a>. </p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue