Home

ugit @beec45c87627ad55ba5524913750c4a044c9270b - refs - log -
-
https://git.jolheiser.com/ugit.git
The code powering this h*ckin' site
ugit / internal / html / readme.templ
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
package html

type ReadmeComponentContext struct {
    Markdown string
}

templ readmeComponent(rcc ReadmeComponentContext) {
	<div class="bg-base/50 px-5 rounded markdown">@templ.Raw(rcc.Markdown)</div>
}