mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-18 21:21:10 +02:00
- Update the page footer copyright date to 2020 Signed-off-by: Timothy Gerla <tim@gerla.net>
53 lines
1.0 KiB
Vue
53 lines
1.0 KiB
Vue
<template>
|
|
<div>
|
|
<footer>
|
|
<div class="pb-32 lg:pb-64">
|
|
<div class="flex flex-col items-center my-3">
|
|
<img class="cncf" src="/images/cncf-color.png" alt="" />
|
|
<p class="pt-2">
|
|
We are a
|
|
<a href="https://cncf.io" target="_blank"
|
|
>Cloud Native Computing Foundation</a
|
|
>
|
|
member.
|
|
</p>
|
|
</div>
|
|
<div class="text-center">
|
|
<a class="inline-block no-underline color-inherit" href="/">
|
|
© 2020 Talos Systems, Inc.
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
background-image: url(~assets/images/chips_bg_v1.svg);
|
|
background-position: center bottom;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
footer {
|
|
@apply flex flex-col items-center font-sans justify-between py-5;
|
|
}
|
|
|
|
footer a {
|
|
@apply text-gray-600 text-xs;
|
|
}
|
|
|
|
footer a:hover {
|
|
@apply text-black underline;
|
|
}
|
|
|
|
.color-inherit {
|
|
color: inherit;
|
|
}
|
|
|
|
.cncf {
|
|
width: 250px;
|
|
height: 39px;
|
|
}
|
|
</style>
|