+ {
+ related.map((p) => {
+ const slug = getSlug(p);
+ const href = `${blogBase}${slug}/`;
+ const dateStr = new Date(p.data.pubDate).toLocaleDateString(
+ isRu ? "ru-RU" : "en-US",
+ { year: "numeric", month: "long", day: "numeric" },
+ );
+ return (
+
+
+ {p.data.title}
+
+ {dateStr}
+
+ {p.data.description}
+
+
+ );
+ })
+ }
+
+