diff --git a/src/components/cards/NewsCard.astro b/src/components/cards/NewsCard.astro
index a1eb40c..9c6b2d1 100644
--- a/src/components/cards/NewsCard.astro
+++ b/src/components/cards/NewsCard.astro
@@ -16,7 +16,7 @@ const countryName = data?.data?.country ? regionNames.of(data.data.country) : ""
const locationArray = [data.data.city,countryName]
locationArray.filter(Boolean).join(', ');
- ---
+---
diff --git a/src/components/cards/NewsList.astro b/src/components/cards/NewsList.astro
new file mode 100644
index 0000000..6ad94ad
--- /dev/null
+++ b/src/components/cards/NewsList.astro
@@ -0,0 +1,30 @@
+---
+import { Image } from "astro:assets"
+import { Icon } from "astro-icon/components";
+import "dayjs/locale/es";
+import dayjs from "dayjs";
+import utc from "dayjs/plugin/utc";
+const regionNames = new Intl.DisplayNames(['es'], { type: 'region' });
+
+const locale = Astro.currentLocale;
+dayjs.extend(utc);
+dayjs.locale(locale);
+
+const { data } = Astro.props;
+const nicedate = dayjs.utc(data.data.date).format("D MMMM YYYY");
+const countryName = data?.data?.country ? regionNames.of(data.data.country) : "";
+
+const locationArray = [data.data.city,countryName]
+locationArray.filter(Boolean).join(', ');
+---
+
+
+
+
+ {
+ data.data.city &&
+ {locationArray.filter(Boolean).join(', ')} |
+ }
+
{nicedate}
+
+
\ No newline at end of file
diff --git a/src/content/news/en/2026-02-16-1.md b/src/content/news/en/2026-02-16-1.md
new file mode 100644
index 0000000..f53731a
--- /dev/null
+++ b/src/content/news/en/2026-02-16-1.md
@@ -0,0 +1,53 @@
+---
+locale: en
+title: 'Closing of the 3rd International Congress of Rabbis in Puerto Rico'
+date: 2026-02-16
+slug: 2026-02-16-closing-of-the-3rd-international-congress-of-rabbis-in-puerto-rico
+city: Cayey
+country: PR
+thumbnail: https://ik.imagekit.io/crpy/tr:w-900/2026_02_16_cierre2.webp
+gallery: [
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre2.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre1.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre3.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre4.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre5.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre6.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre7.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre8.webp',
+ },
+ {
+ image: 'https://ik.imagekit.io/crpy/tr:w-1280/2026_02_16_cierre9.webp',
+ },
+
+]
+---
+
+## The final day included an institutional visit to La Gran Carpa Catedral (The Great Tent Cathedral), an academic conference, and the presentation of the 2026 Amiel Award.
+
+On Monday, February 16, 2026, the closing day of the 3rd International Congress of Rabbis featured an institutional visit to La Gran Carpa Catedral in Puerto Rico.
+
+The event brought together more than fifty rabbis from different countries, together with their families, in a gathering designed to strengthen the bonds formed during the days of academic and community work.
+
+As part of the program, Dr. José Benjamín Pérez Matos gave a lecture to the participants, offering reflections related to community leadership and the contemporary challenges that religious institutions face in diverse international contexts.
+
+That same day, the 2026 Amiel Award was presented, a distinction given in recognition of institutional work undertaken in the education and community fields. The award was presented by Rabbi Eliahu Birnbaum and Rabbi Dr. Katriel Kenneth Brander, President and Rosh HaYeshiva of the Ohr Torah Stone network, who delivered remarks on the significance of the award.
+
+The meeting concluded with a dinner that served as a space for informal exchange and the strengthening of institutional relationships, closing the congress in an atmosphere of collaboration and shared vision.
+
+On this final day, the 3rd International Congress of Rabbis concluded its 2026 agenda by consolidating an international network dedicated to educational cooperation, intercultural dialogue, and sustained partnership between communities from different continents.
\ No newline at end of file
diff --git a/src/content/news/es/2026-02-26.md b/src/content/news/es/2026-02-26.md
index 0d969ca..bef5273 100644
--- a/src/content/news/es/2026-02-26.md
+++ b/src/content/news/es/2026-02-26.md
@@ -5,6 +5,7 @@ date: 2026-02-26
slug: 2026-02-26-dr-jose-benjamin-perez-plantacion-bosque-israel
city: Asunción
country: PY
+youtube: https://youtu.be/8-YWuoWb4dY
thumbnail: https://ik.imagekit.io/crpy/tr:w-1280/parque-isarel.jpg
gallery: [
{
diff --git a/src/pages/[locale]/news/index.astro b/src/pages/[locale]/news/index.astro
index 447f4fc..dda68d3 100644
--- a/src/pages/[locale]/news/index.astro
+++ b/src/pages/[locale]/news/index.astro
@@ -5,6 +5,7 @@ import Header from "@/components/Header.astro"
import NewsCard from "@/components/cards/NewsCard.astro";
import { getCollection, getEntry } from "astro:content";
import FooterSection from "@/components/section/FooterSection.astro";
+import NewsList from "@/components/cards/NewsList.astro";
import { createTranslator, t } from '@/i18n';
@@ -20,7 +21,7 @@ const newsItems = await getCollection("news", (post)=>{
-
+
{tl("news.title")}
{tl("news.text")}
@@ -28,14 +29,14 @@ const newsItems = await getCollection("news", (post)=>{
-
+
{
[...newsItems]
.sort((a, b) =>
new Date(b.data.date).getTime() - new Date(a.data.date).getTime()
)
.map((item) => (
-
+
))
}
diff --git a/src/pages/news/index.astro b/src/pages/news/index.astro
index 447f4fc..dda68d3 100644
--- a/src/pages/news/index.astro
+++ b/src/pages/news/index.astro
@@ -5,6 +5,7 @@ import Header from "@/components/Header.astro"
import NewsCard from "@/components/cards/NewsCard.astro";
import { getCollection, getEntry } from "astro:content";
import FooterSection from "@/components/section/FooterSection.astro";
+import NewsList from "@/components/cards/NewsList.astro";
import { createTranslator, t } from '@/i18n';
@@ -20,7 +21,7 @@ const newsItems = await getCollection("news", (post)=>{
-
+
{tl("news.title")}
{tl("news.text")}
@@ -28,14 +29,14 @@ const newsItems = await getCollection("news", (post)=>{
-
+
{
[...newsItems]
.sort((a, b) =>
new Date(b.data.date).getTime() - new Date(a.data.date).getTime()
)
.map((item) => (
-
+
))
}