ugit/internal/html
jolheiser 8f69b1b036
feat: commit page
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2024-01-16 21:37:25 -06:00
..
base.templ initial commit 2024-01-15 16:26:51 -06:00
base_templ.go initial commit 2024-01-15 16:26:51 -06:00
chroma.go feat: commit page 2024-01-16 21:37:25 -06:00
generate.css feat: commit page 2024-01-16 21:37:25 -06:00
generate.go initial commit 2024-01-15 16:26:51 -06:00
index.templ feat: log page 2024-01-15 22:54:43 -06:00
index_templ.go feat: log page 2024-01-15 22:54:43 -06:00
markdown.go initial commit 2024-01-15 16:26:51 -06:00
readme.templ initial commit 2024-01-15 16:26:51 -06:00
readme_templ.go initial commit 2024-01-15 16:26:51 -06:00
repo.templ feat: commit page 2024-01-16 21:37:25 -06:00
repo_commit.templ feat: commit page 2024-01-16 21:37:25 -06:00
repo_commit_templ.go feat: commit page 2024-01-16 21:37:25 -06:00
repo_file.templ initial commit 2024-01-15 16:26:51 -06:00
repo_file_templ.go initial commit 2024-01-15 16:26:51 -06:00
repo_log.templ feat: commit page 2024-01-16 21:37:25 -06:00
repo_log_templ.go feat: commit page 2024-01-16 21:37:25 -06:00
repo_refs.templ feat: log page 2024-01-15 22:54:43 -06:00
repo_refs_templ.go feat: log page 2024-01-15 22:54:43 -06:00
repo_templ.go feat: commit page 2024-01-16 21:37:25 -06:00
repo_tree.templ initial commit 2024-01-15 16:26:51 -06:00
repo_tree_templ.go initial commit 2024-01-15 16:26:51 -06:00
tailwind.config.js initial commit 2024-01-15 16:26:51 -06:00
tailwind.go feat: commit page 2024-01-16 21:37:25 -06:00

readme.templ

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>
}