package main // html templates are here instead of an .html file to avoid depending on external files // in this way, everything is inside the binary const dirTemplate = ` {{.Title}} {{.Content}} ` const htmlTemplate = ` {{.Title}} {{.Content}} `