function RenderHomePage(mountPoint) {
mountPoint.innerHTML = `
`
const images_button = mountPoint.querySelector("#images_button")
images_button.addEventListener('click', () => {
window.location.href = `/images`
})
const boards_button = mountPoint.querySelector("#boards_button")
boards_button.addEventListener('click', () => {
window.location.href = `/boards`
})
const markdowns_button = mountPoint.querySelector("#markdowns_button")
markdowns_button.addEventListener('click', () => {
window.location.href = `/markdowns`
})
}