2017-10-27 11:40:54 +05:30
|
|
|
{{template "base/head" .}}
|
2023-02-02 04:26:10 +05:30
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository file list">
|
2017-10-27 11:40:54 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
2024-06-29 12:27:34 +05:30
|
|
|
{{if $.CodeIndexerDisabled}}
|
|
|
|
{{$branchURLPrefix := printf "%s/search/branch/" $.RepoLink}}
|
|
|
|
{{$tagURLPrefix := printf "%s/search/tag/" $.RepoLink}}
|
|
|
|
{{$suffix := printf "?q=%s&fuzzy=%t" (.Keyword|QueryEscape) .IsFuzzy}}
|
|
|
|
{{template "repo/branch_dropdown" dict "root" . "ContainerClasses" "tw-mb-3" "branchURLPrefix" $branchURLPrefix "branchURLSuffix" $suffix "tagURLPrefix" $tagURLPrefix "tagURLSuffix" $suffix}}
|
|
|
|
{{end}}
|
2024-03-15 04:54:59 +05:30
|
|
|
{{template "shared/search/code/search" .}}
|
2017-10-27 11:40:54 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|