mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
740 B
26 lines
740 B
{{template "base/head" .}}
|
|
{{if .ContextUser.IsOrganization}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content organization projects">
|
|
{{template "org/header" .}}
|
|
<div class="ui container">
|
|
{{template "projects/list" .}}
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user profile">
|
|
<div class="ui container">
|
|
<div class="ui stackable grid">
|
|
<div class="ui four wide column">
|
|
{{template "shared/user/profile_big_avatar" .}}
|
|
</div>
|
|
<div class="ui twelve wide column">
|
|
<div class="tw-mb-4">
|
|
{{template "user/overview/header" .}}
|
|
</div>
|
|
{{template "projects/list" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{template "base/footer" .}}
|
|
|