Compare commits

...

7 Commits

Author SHA1 Message Date
David Ascanio 4fcfb94ae7 Correción url compartir whatsapp 2026-03-09 00:37:48 -03:00
Esteban 22234a40b4 text of the last new fixed 2026-03-08 17:18:17 -05:00
Esteban 93fc990410 change the name v2 2026-03-08 17:10:04 -05:00
Esteban fca5e5452b added the name of doctor for the last new 2026-03-08 17:05:08 -05:00
Esteban 2e4596026e added thumb image 2026-03-08 15:56:10 -05:00
Esteban 079a53090b added new of woman day and added footer for news pages 2026-03-08 15:26:28 -05:00
Esteban Paz 25b4875e47 Merge pull request 'shared-news' (#20) from shared-news into main
Reviewed-on: #20
2026-03-08 18:35:49 +00:00
5 changed files with 58 additions and 10 deletions

View File

@ -98,15 +98,7 @@ const copyLink = async () => {
console.error("No se pudo copiar") console.error("No se pudo copiar")
} }
} }
const BASE_URL = window.location.host const fullUrl = computed(() => window.location.href)
const fullUrl = computed(() => {
if (props.url.startsWith("http")) {
const url = new URL(props.url)
return `${BASE_URL}${url.pathname}`
}
return `${BASE_URL}${props.url}`
})
const encodedUrl = computed(() => encodeURIComponent(fullUrl.value)) const encodedUrl = computed(() => encodeURIComponent(fullUrl.value))
const twitterUrl = computed(() => `https://twitter.com/intent/tweet?url=${encodedUrl.value}`) const twitterUrl = computed(() => `https://twitter.com/intent/tweet?url=${encodedUrl.value}`)

View File

@ -0,0 +1,25 @@
---
locale: en
title: 'Remarks for International Womens Day, dedicated to the Women of the Israeli Defense Forces'
date: 2026-03-08
slug: 2026-03-08-remarks-for-international-womens-day-dedicated-to-the-women-of-the-israeli-defense-forces
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/woman-day-2.webp'
---
This International Womens Day, I want to congratulate every woman who wears the uniform of the Israeli army.
You carry the legacy of the women who, since the founding of this State, understood that peace is not something that is given, but something that is protected with determination. Whether in command posts, field operations, technology, or logistics, you are the backbone of our defense.
We know that the burden you carry is twofold. You carry your combat equipment, and at the same time, you carry your concern for your families and the future of our home. But when the road gets tough, look around you, you are not alone: HaShem is watching over Israel, and He is always by your side!
With every mission accomplished, you demonstrate that courage has no gender, and that resilience is our greatest weapon.
Keep pushing forward with your heads held high, with professionalism and with the humanity that has always set us apart! Come back home safe, knowing that your service is the greatest gift you can give your people.
Thank you for your sacrifice, for the sleepless nights, and for demonstrating that Israels strength lies in the diversity and courage of its daughters!
May His Light and Strength always guide you back home!
Am Yisrael Chai!
**Dr. José Benjamín Pérez Matos**

View File

@ -0,0 +1,25 @@
---
locale: es
title: 'Palabras por el Día Internacional de la Mujer, dirigidas a las mujeres de las fuerzas militares de Israel'
date: 2026-03-08
slug: 2026-03-08-palabras-por-el-dia-internacional-de-la-mujer-dirigidas-a-las-mujeres-de-las-fuerzas-militares-de-israel
place: ''
thumbnail: 'https://ik.imagekit.io/crpy/tr:w-1280,h-720,cm-pad_resize,bg-blurred/woman-day-2.webp'
---
En este Día Internacional de la Mujer, quiero felicitar a cada una de las mujeres que visten el uniforme del ejército de Israel.
Ustedes viven el legado de las mujeres que, desde la fundación de este Estado, entendieron que la paz no es algo que se recibe, sino algo que se protege con determinación. En los puestos de mando, en el terreno, en la tecnología y en la logística, ustedes son la columna vertebral de nuestra defensa.
Sabemos que el peso que cargan es doble. Cargan con el equipo de combate, y —al mismo tiempo— con la preocupación por sus familias y el futuro de nuestro hogar. Sin embargo, cuando el camino se vuelve difícil: miren a su lado, no están solas: ¡HaShem cuida de Israel, y siempre está a su lado!
Ustedes demuestran, con cada misión cumplida, que el valor no tiene género, y que la resiliencia es nuestra mejor arma.
¡Sigan adelante con la cabeza en alto, con profesionalismo y con la humanidad que siempre nos ha distinguido! Regresen a casa a salvo, sabiendo que su servicio es el regalo más grande que pueden darle a su pueblo.
¡Gracias por su sacrificio, por las noches en vela y por demostrar que la fuerza de Israel reside en la diversidad y el coraje de sus hijas!
¡Que Su Luz y Fortaleza las guíen siempre de regreso a casa!
¡Am Israel Jai!
**Dr. José Benjamín Pérez Matos**

View File

@ -4,6 +4,7 @@ import NewsSection from "@/components/section/NewsSection.astro"
import Header from "@/components/Header.astro" import Header from "@/components/Header.astro"
import NewsCard from "@/components/cards/NewsCard.astro"; import NewsCard from "@/components/cards/NewsCard.astro";
import { getCollection, getEntry } from "astro:content"; import { getCollection, getEntry } from "astro:content";
import FooterSection from "@/components/section/FooterSection.astro";
import { createTranslator, t } from '@/i18n'; import { createTranslator, t } from '@/i18n';
@ -39,4 +40,6 @@ const newsItems = await getCollection("news", (post)=>{
} }
</div> </div>
</div> </div>
<FooterSection />
</MainLayout> </MainLayout>

View File

@ -4,6 +4,7 @@ import NewsSection from "@/components/section/NewsSection.astro"
import Header from "@/components/Header.astro" import Header from "@/components/Header.astro"
import NewsCard from "@/components/cards/NewsCard.astro"; import NewsCard from "@/components/cards/NewsCard.astro";
import { getCollection, getEntry } from "astro:content"; import { getCollection, getEntry } from "astro:content";
import FooterSection from "@/components/section/FooterSection.astro";
import { createTranslator, t } from '@/i18n'; import { createTranslator, t } from '@/i18n';
@ -21,7 +22,7 @@ const newsItems = await getCollection("news", (post)=>{
</div> </div>
<div class="container mx-auto"> <div class="container mx-auto">
<div class="flex flex-col lg:w-1/2 items-center mx-auto py-8"> <div class="flex flex-col lg:w-1/2 items-center mx-auto py-8">
<h4 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary">{tl("news.title")}</h4> <h1 class="text-white text-2xl uppercase font-bold text-center mb-4 font-primary md:mt-20 mt-10">{tl("news.title")}</h1>
<h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl("news.text")}</h2> <h2 class="text-white text-3xl lg:text-5xl font-bold text-center font-secondary mb-4">{tl("news.text")}</h2>
<!-- <p class="text-white text-xl text-center">{tl("news.text3")}</p> --> <!-- <p class="text-white text-xl text-center">{tl("news.text3")}</p> -->
</div> </div>
@ -39,4 +40,6 @@ const newsItems = await getCollection("news", (post)=>{
} }
</div> </div>
</div> </div>
<FooterSection />
</MainLayout> </MainLayout>