ugit/internal/html
jolheiser 7501f540d1
feat: breadcrumbs and History.replaceState
- Adds breadcrumbs to repo tree and repo file views
- Fixes line highlighting by replacing state instead of pushing so that going "back" works correctly

Signed-off-by: jolheiser <john.olheiser@gmail.com>
2024-06-26 23:24:50 -05:00
..
markup chore: UI cleanup 2024-03-01 15:34:50 -06:00
base.templ fix: minor correction for non-chroma pre/code blocks 2024-05-24 22:29:44 -05:00
base_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
generate.css fix: minor correction for non-chroma pre/code blocks 2024-05-24 22:29:44 -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: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
readme.templ chore: update readme styles 2024-02-02 15:29:18 -06:00
readme_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo.templ feat: move search to topbar and no result indicator 2024-05-24 21:31:35 -05:00
repo_breadcrumb.templ feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_breadcrumb_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_commit.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_commit_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_file.templ feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_file_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_log.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_log_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_refs.templ fix: styling 2024-03-22 13:12:47 -05:00
repo_refs_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_search.templ feat: move search to topbar and no result indicator 2024-05-24 21:31:35 -05:00
repo_search_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_tree.templ feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
repo_tree_templ.go feat: breadcrumbs and History.replaceState 2024-06-26 23:24:50 -05:00
tailwind.config.js initial commit 2024-01-15 16:26:51 -06:00
tailwind.go fix: minor correction for non-chroma pre/code blocks 2024-05-24 22:29:44 -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>
	}
}