packagemodelsimport"html/template"typeFileNodestruct{NamestringPathstring// Relative path within the projectLinkstring// URL to the rendered pageIsDirboolChildren[]*FileNodeContentTypestringIconstring}typeProjectstruct{Namestring// Slug/Folder nameTitlestringDescriptionstringDatestringLinkstring// URL to project indexContentDirstringTempDirstringZipLinkstring}typeTemplateDatastruct{TitlestringContenttemplate.HTMLFileTree*FileNodeCurrentProject*ProjectProjects[]Project// All projects for sidebarBaseURLstringCurrentPathstring// Current relative path for sidebar highlightingIsIndexboolExtramap[string]any// For any extra data like OverviewContent}