mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
04f9ad0568
Fixes https://github.com/go-gitea/gitea/issues/30005. Regression from https://github.com/go-gitea/gitea/pull/29945. There was only once instance of `tw-content-center` before that PR, so I just ran below command and reverted that one instance. ```sh perl -p -i -e 's#tw-content-center#tw-items-center#g' web_src/js/**/* templates/**/* models/**/* tests/**/* ```
16 lines
570 B
Handlebars
16 lines
570 B
Handlebars
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository projects view-project">
|
|
{{template "repo/header" .}}
|
|
<div class="ui container padded">
|
|
<div class="tw-flex tw-justify-between tw-items-center gt-mb-4">
|
|
{{template "repo/issue/navbar" .}}
|
|
<a class="ui small primary button" href="{{.RepoLink}}/issues/new/choose?project={{.Project.ID}}">{{ctx.Locale.Tr "repo.issues.new"}}</a>
|
|
</div>
|
|
</div>
|
|
<div class="ui container fluid padded">
|
|
{{template "projects/view" .}}
|
|
</div>
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|