ugit/internal/html
jolheiser b32eb0a759
fix: margins on mobile
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2024-03-27 21:25:20 -05:00
..
markup chore: UI cleanup 2024-03-01 15:34:50 -06:00
base.templ fix: margins on mobile 2024-03-27 21:25:20 -05:00
base_templ.go fix: margins on mobile 2024-03-27 21:25:20 -05:00
generate.css fix: styling 2024-03-22 13:12:47 -05:00
generate.go feat: native git 2024-02-22 13:14:05 -06:00
index.templ feat: better mobile styling 2024-03-19 22:46:57 -05:00
index_templ.go feat: better mobile styling 2024-03-19 22:46:57 -05:00
readme.templ chore: update readme styles 2024-02-02 15:29:18 -06:00
readme_templ.go chore: update readme styles 2024-02-02 15:29:18 -06:00
repo.templ feat: grep search 2024-03-01 11:58:05 -06:00
repo_commit.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_commit_templ.go fix: styling 2024-03-22 13:12:47 -05:00
repo_file.templ feat: better mobile styling 2024-03-19 22:46:57 -05:00
repo_file_templ.go feat: better mobile styling 2024-03-19 22:46:57 -05:00
repo_log.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_log_templ.go fix: styling 2024-03-22 13:12:47 -05:00
repo_refs.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_refs_templ.go fix: styling 2024-03-22 13:12:47 -05:00
repo_search.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_search_templ.go fix: styling 2024-03-22 13:12:47 -05:00
repo_templ.go feat: grep search 2024-03-01 11:58:05 -06:00
repo_tree.templ feat: better mobile styling 2024-03-19 22:46:57 -05:00
repo_tree_templ.go feat: better mobile styling 2024-03-19 22:46:57 -05:00
tailwind.config.js initial commit 2024-01-15 16:26:51 -06:00
tailwind.go fix: margins on mobile 2024-03-27 21:25:20 -05:00

readme.templ

package html

type ReadmeComponentContext struct {
    Markdown string
}

templ readmeComponent(rcc ReadmeComponentContext) {
	if rcc.Markdown != "" {
		<div class="bg-base dark:bg-base/50 p-5 mt-5 rounded markdown">@templ.Raw(rcc.Markdown)</div>
	}
}