added cookie-consent + privacy policy + fixed #32
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2022-01-30 19:53:30 +01:00
parent f901db4b29
commit 9f2a57e09f
9 changed files with 534 additions and 35 deletions

View File

@@ -1,17 +1,23 @@
<template>
<div class="footer bg-secondary text-center pt-4 pb-4">
<div class="footer bg-secondary text-center pt-4 pb-5">
<div class="icons pb-4">
<a aria-label="Git Link" class="gitea text-white" href="https://git.harting.dev/CSGOWTF" target="_blank">
<i class="fa fa-gitea fa-2x" aria-hidden="true"></i>
<i aria-hidden="true" class="fa fa-gitea fa-2x"></i>
</a>
</div>
<div class="text">
<p>This site is an open source project, originally created and maintained by the <span class="text-warning">CSGOWTF</span>
team.</p>
<p class="text-muted">For feedback open an <a class="text-decoration-none text-warning"
href="https://git.harting.dev/CSGOWTF/csgowtf/issues"
target="_blank">issue</a>.</p>
<p class="text-muted mb-0">Build-Version: <span class="text-white">{{ version }}</span></p>
<div class="d-flex justify-content-center align-items-center gap-4">
<p class="text-muted">For feedback open an <a class="text-decoration-none text-warning"
href="https://git.harting.dev/CSGOWTF/csgowtf/issues"
target="_blank">issue</a></p>
<p>
<a class="text-decoration-none text-warning" href="/privacy-policy">Privacy Policy</a>
</p>
<p class="text-muted">Build-Version: <span class="text-white">{{ version }}</span></p>
</div>
</div>
</div>
</template>
@@ -28,11 +34,12 @@ export default {
<style lang="scss" scoped>
.footer {
height: 200px;
height: 220px;
.fa:hover {
color: #609926;
}
p {
font-size: .85rem;
}