mirror of
https://github.com/lutinglt/gitea-github-theme.git
synced 2025-12-21 22:23:56 +00:00
80 lines
4.1 KiB
Cheetah
80 lines
4.1 KiB
Cheetah
{{/* use grid layout, still use the old ID because there are many other CSS styles depending on this ID */}}
|
|
<div id="repo-files-table" {{if .HasFilesWithoutLatestCommit}}hx-indicator="#repo-files-table .repo-file-cell.message" hx-trigger="load" hx-swap="morph" hx-post="{{.LastCommitLoaderURL}}"{{end}}>
|
|
<div class="github-theme-templates repo-file-line repo-file-last-commit">
|
|
{{template "repo/latest_commit" .}}
|
|
<div class="github-latest-time">
|
|
{{if and .LatestCommit .LatestCommit.Committer}}
|
|
<a href="{{ (print .RepoLink "/commit") }}/{{.LatestCommit.ID}}" class="muted" rel="nofollow">
|
|
{{- ShortSha .LatestCommit.ID.String -}}
|
|
</a>
|
|
·
|
|
{{DateUtils.TimeSince .LatestCommit.Committer.When}}
|
|
{{end}}
|
|
</div>
|
|
{{if and (not .TreeNames) (.Permission.CanRead ctx.Consts.RepoUnitTypeCode) (not .IsEmptyRepo)}}
|
|
<a class="github-latest-commit item muted" href="{{.RepoLink}}/commits/{{.RefFullName.RefWebLinkPath}}">
|
|
{{svg "octicon-history" 16}} <b>{{ctx.Locale.PrettyNumber .CommitsCount}}</b> {{ctx.Locale.TrN .CommitsCount "repo.commit" "repo.commits"}}
|
|
</a>
|
|
{{end}}
|
|
{{if and .TreeNames (not .IsViewFile) (not .IsBlame)}}{{/* IsViewDirectory (not home), TODO: split the templates, avoid using "if" tricks */}}
|
|
<a class="github-latest-commit item muted" href="{{.RepoLink}}/commits/{{.RefTypeNameSubURL}}/{{.TreePath | PathEscapeSegments}}">
|
|
{{svg "octicon-history" 16}}{{ctx.Locale.Tr "repo.file_history"}}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
{{$.FileIconPoolHTML}}
|
|
{{if .HasParentPath}}
|
|
<a class="repo-file-line parent-link silenced" href="{{.BranchLink}}{{if .ParentPath}}{{PathEscapeSegments .ParentPath}}{{end}}">
|
|
{{index $.FileIcons ".."}} ..
|
|
</a>
|
|
{{end}}
|
|
{{range $item := .Files}}
|
|
<div class="repo-file-item">
|
|
{{$entry := $item.Entry}}
|
|
{{$commit := $item.Commit}}
|
|
{{$submoduleFile := $item.SubmoduleFile}}
|
|
<div class="repo-file-cell name muted-links {{if not $commit}}notready{{end}}">
|
|
{{index $.FileIcons $entry.Name}}
|
|
{{if $entry.IsSubModule}}
|
|
{{$submoduleLink := $submoduleFile.SubmoduleWebLinkTree ctx}}
|
|
{{if $submoduleLink}}
|
|
<a class="entry-name" href="{{$submoduleLink.RepoWebLink}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
|
|
@ <a class="text primary" href="{{$submoduleLink.CommitWebLink}}">{{ShortSha $submoduleFile.RefID}}</a>
|
|
{{else}}
|
|
<span class="entry-name" title="{{$entry.Name}}">{{$entry.Name}}</span>
|
|
@ {{ShortSha $submoduleFile.RefID}}
|
|
{{end}}
|
|
{{else}}
|
|
{{if $entry.IsDir}}
|
|
{{$subJumpablePathName := $entry.GetSubJumpablePathName}}
|
|
<a class="entry-name" href="{{$.TreeLink}}/{{PathEscapeSegments $subJumpablePathName}}" title="{{$subJumpablePathName}}">
|
|
{{$subJumpablePathFields := StringUtils.Split $subJumpablePathName "/"}}
|
|
{{$subJumpablePathFieldLast := (Eval (len $subJumpablePathFields) "-" 1)}}
|
|
{{if eq $subJumpablePathFieldLast 0}}
|
|
{{$subJumpablePathName}}
|
|
{{else}}
|
|
{{$subJumpablePathPrefixes := slice $subJumpablePathFields 0 $subJumpablePathFieldLast}}
|
|
<span class="text light-2">{{StringUtils.Join $subJumpablePathPrefixes "/"}}</span>/{{index $subJumpablePathFields $subJumpablePathFieldLast}}
|
|
{{end}}
|
|
</a>
|
|
{{else}}
|
|
<a class="entry-name" href="{{$.TreeLink}}/{{PathEscapeSegments $entry.Name}}" title="{{$entry.Name}}">{{$entry.Name}}</a>
|
|
{{if $entry.IsLink}}
|
|
<a class="entry-symbol-link flex-text-inline" data-tooltip-content title="{{ctx.Locale.Tr "repo.find_file.follow_symlink"}}" href="{{$.TreeLink}}/{{PathEscapeSegments $entry.Name}}?follow_symlink=1">{{svg "octicon-link" 12}}</a>
|
|
{{end}}
|
|
{{end}}
|
|
{{end}}
|
|
</div>
|
|
<div class="repo-file-cell message loading-icon-2px">
|
|
{{if $commit}}
|
|
{{$commitLink := printf "%s/commit/%s" $.RepoLink (PathEscape $commit.ID.String)}}
|
|
{{ctx.RenderUtils.RenderCommitMessageLinkSubject $commit.Message $commitLink $.Repository}}
|
|
{{else}}
|
|
… {{/* will be loaded again by LastCommitLoaderURL */}}
|
|
{{end}}
|
|
</div>
|
|
<div class="repo-file-cell age">{{if $commit}}{{DateUtils.TimeSince $commit.Committer.When}}{{end}}</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|