blog/assets/js/data.js
2024-05-20 10:53:26 -03:00

23 lines
368 B
JavaScript

function get_data() {
return {
pt: {
posts: [
{
title: "Scripts em OCaml",
slug: "scripts-em-ocaml",
date: "23/03/2024",
},
]
},
en: {
posts: [
{
title: "Hello, Worldling",
slug: "hello-worldling",
date: "May 20, 2024",
},
]
}
}
}