Corrección de errores y build
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "websostenible",
|
||||
"type": "module",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"devhost": "astro dev --host",
|
||||
|
||||
27
src/components/Footer.astro
Normal file
27
src/components/Footer.astro
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
<footer class="bg-dark text-white py-4">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 text-center text-md-start">
|
||||
<p>
|
||||
© 2024 Ecobjetivos. Todos los derechos
|
||||
reservados.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-6 text-center text-md-end">
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-facebook-f"></i></a
|
||||
>
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-twitter"></i></a
|
||||
>
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-instagram"></i></a
|
||||
>
|
||||
<a href="#" class="text-white"
|
||||
><i class="fab fa-linkedin-in"></i></a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@@ -3,6 +3,7 @@
|
||||
import { getHeadings } from '../utils/getHeadings'; // Asumimos que crearemos esta utilidad
|
||||
import RelatedPosts from '../components/PostsRelacionados.astro'; // Componente para posts relacionados
|
||||
import Navbar from '../components/Navbar.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
|
||||
const { frontmatter, content } = Astro.props;
|
||||
const headings = getHeadings(content);
|
||||
@@ -20,23 +21,23 @@ const linkedinShareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{frontmatter.title} - Ecobjetivos</title>
|
||||
<title>{frontmatter.titulo} - Ecobjetivos</title>
|
||||
<meta name="description" content={description}>
|
||||
<link rel="canonical" href={new URL(Astro.url.pathname, Astro.site).toString()}>
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:url" content={Astro.url}>
|
||||
<meta property="og:title" content={frontmatter.title}>
|
||||
<meta property="og:title" content={frontmatter.titulo}>
|
||||
<meta property="og:description" content={description}>
|
||||
<meta property="og:image" content={frontmatter.image && new URL(frontmatter.image, Astro.site)}>
|
||||
<meta property="og:image" content={frontmatter.imagen && new URL(frontmatter.imagen, Astro.site)}>
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:url" content={Astro.url}>
|
||||
<meta property="twitter:title" content={frontmatter.title}>
|
||||
<meta property="twitter:title" content={frontmatter.titulo}>
|
||||
<meta property="twitter:description" content={description}>
|
||||
<meta property="twitter:image" content={frontmatter.image && new URL(frontmatter.image, Astro.site)}>
|
||||
<meta property="twitter:image" content={frontmatter.imagen && new URL(frontmatter.imagen, Astro.site)}>
|
||||
|
||||
<!-- Structured Data for Google -->
|
||||
<script type="application/ld+json">
|
||||
@@ -72,6 +73,7 @@ const linkedinShareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${
|
||||
color: #333;
|
||||
}
|
||||
.post-header {
|
||||
margin-top: 60px;
|
||||
background-color: #4CAF50;
|
||||
color: white;
|
||||
padding: 2rem 0;
|
||||
@@ -136,7 +138,7 @@ const linkedinShareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${
|
||||
|
||||
<header class="post-header">
|
||||
<div class="container">
|
||||
<h1 class="display-4">{frontmatter.title}</h1>
|
||||
<h1 class="display-4">{frontmatter.titulo}</h1>
|
||||
<p class="post-meta">
|
||||
<i class="fas fa-calendar-alt"></i> {new Date(frontmatter.fecha).toLocaleDateString('es-ES', {year: 'numeric', month: 'long', day: 'numeric'})}
|
||||
|
|
||||
@@ -177,9 +179,9 @@ const linkedinShareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Compartir</h5>
|
||||
<a href={facebookShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-primary me-2"><i class="fab fa-facebook-f"></i></a>
|
||||
<a href={twitterShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-info me-2"><i class="fab fa-twitter"></i></a>
|
||||
<a href={linkedinShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-secondary"><i class="fab fa-linkedin-in"></i></a>
|
||||
<a href={facebookShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-primary me-2"><i class="fab fa-facebook-f fa-fw"></i></a>
|
||||
<a href={twitterShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-info me-2"><i class="fab fa-twitter fa-fw"></i></a>
|
||||
<a href={linkedinShareUrl} target="_blank" rel="noopener noreferrer" class="btn btn-secondary"><i class="fab fa-linkedin-in fa-fw"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
@@ -189,10 +191,32 @@ const linkedinShareUrl = `https://www.linkedin.com/shareArticle?mini=true&url=${
|
||||
<RelatedPosts currentPost={frontmatter} />
|
||||
</main>
|
||||
|
||||
<footer class="bg-dark text-white py-4">
|
||||
<!-- ... (contenido del footer) ... -->
|
||||
</footer>
|
||||
<Footer/>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
<style is:global>
|
||||
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital@0;1&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Londrina+Sketch&display=swap");
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
a {
|
||||
font-family: "Inter Tight", sans-serif !important;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 400 !important;
|
||||
font-style: normal;
|
||||
}
|
||||
.londrina-sketch-regular {
|
||||
font-family: "Londrina Sketch", sans-serif !important;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
</style>
|
||||
@@ -1,5 +1,6 @@
|
||||
---
|
||||
// Component Imports
|
||||
import Footer from "../components/Footer.astro";
|
||||
import ListadoPostsHorizontal from "../components/ListadoPostsHorizontal.astro";
|
||||
import Navbar from "../components/Navbar.astro";
|
||||
import { Image } from "astro:assets";
|
||||
@@ -248,32 +249,7 @@ const animateOnScroll = `
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="bg-dark text-white py-4">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 text-center text-md-start">
|
||||
<p>
|
||||
© 2024 Ecobjetivos. Todos los derechos
|
||||
reservados.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-6 text-center text-md-end">
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-facebook-f"></i></a
|
||||
>
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-twitter"></i></a
|
||||
>
|
||||
<a href="#" class="text-white me-2"
|
||||
><i class="fab fa-instagram"></i></a
|
||||
>
|
||||
<a href="#" class="text-white"
|
||||
><i class="fab fa-linkedin-in"></i></a
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<Footer/>
|
||||
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
|
||||
|
||||
Reference in New Issue
Block a user