code.gitea.io/gitea@v1.22.3/templates/repo/find/files.tmpl (about)

     1  {{template "base/head" .}}
     2  <div role="main" aria-label="{{.Title}}" class="page-content repository">
     3  	{{template "repo/header" .}}
     4  	<div class="ui container">
     5  		<div class="tw-flex tw-items-center">
     6  			<a href="{{$.RepoLink}}">{{.RepoName}}</a>
     7  			<span class="tw-mx-2">/</span>
     8  			<div class="ui input tw-flex-1">
     9  				<input id="repo-file-find-input" type="text" autofocus data-url-data-link="{{.DataLink}}" data-url-tree-link="{{.TreeLink}}">
    10  			</div>
    11  		</div>
    12  		<table id="repo-find-file-table" class="ui single line table">
    13  			<tbody>
    14  			</tbody>
    15  		</table>
    16  		<div id="repo-find-file-no-result" class="ui row center tw-mt-8 tw-hidden">
    17  			<h3>{{ctx.Locale.Tr "repo.find_file.no_matching"}}</h3>
    18  		</div>
    19  	</div>
    20  </div>
    21  {{template "base/footer" .}}