aboutsummaryrefslogtreecommitdiff
path: root/src/partials/Footer.astro
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-05-04 01:05:04 +0200
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-05-04 13:34:10 +0200
commitfe7c149811f2e20c055ad0375aff05d29491efb4 (patch)
tree8df0652a35cca0f9c8fcb5fb90648fef2f8415b4 /src/partials/Footer.astro
parent3de434508e0b609dea1ce8dca94ef1b708e61d61 (diff)
Rebuild the site in Astro
Add licence Update site name in header to match README.md Add missing metadescription, opengraph and link to RSS Update Astro configuration to include sitemap integration with priority and changefreq settings New post
Diffstat (limited to 'src/partials/Footer.astro')
-rw-r--r--src/partials/Footer.astro34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/partials/Footer.astro b/src/partials/Footer.astro
new file mode 100644
index 0000000..0dc9483
--- /dev/null
+++ b/src/partials/Footer.astro
@@ -0,0 +1,34 @@
+<footer>
+ <p>
+ Copyright &copy; 2023-{new Date().getFullYear()} Ariel Costas Guerrero. Todos
+ los derechos reservados.
+ </p>
+ <p>
+ Contenido cedido bajo licencia <a
+ href="https://creativecommons.org/licenses/by-sa/4.0/deed.es"
+ >CC BY-SA 4.0</a
+ > salvo que se indique lo contrario. El código fuente de este sitio está
+ disponible en <a href="https://github.com/arielcostas/costasdev"
+ >GitHub</a
+ >, bajo los términos de la <a
+ href="https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12"
+ >Licencia Pública de la Unión Europea</a
+ >.
+ </p>
+</footer>
+
+<style lang="scss">
+ @import "../../styles/shared.scss";
+
+ footer {
+ background-color: $dark;
+ color: $light;
+ text-align: center;
+
+ padding: 0.5rem 1rem;
+
+ a {
+ color: $accentLight;
+ }
+ }
+</style>