export const title = "Blog"; export const description = "Hello, my friend. Stay a while and listen."; export const nav_icon = "https://static.fosterhangdaan.com/icons/tabler-icons/latest/svg/news.svg"; export default function({ nav }) { const sortPosts = (a,b) => { if (a.data.date < b.data.date) { return 1; } else if (a.data.date > b.data.date) { return -1; } else { return 0; } }; if (!nav.menu("/blog/posts")) { return (

No posts yet.
Check back later.

); } return ( ); }