Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
39 lines
1.1 KiB
39 lines
1.1 KiB
{{template "base/head" .}} |
|
|
|
<div class="page-content explore"> |
|
{{template "explore/navbar" .}} |
|
<div class="ui container"> |
|
{{template "explore/search" .}} |
|
|
|
<div class="ui user list"> |
|
{{range .Users}} |
|
<div class="item"> |
|
{{avatar .}} |
|
<div class="content"> |
|
<span class="header"><a href="{{.HomeLink}}">{{.Name}}</a> {{.FullName}}</span> |
|
<div class="description"> |
|
{{if .Location}} |
|
{{svg "octicon-location"}} {{.Location}} ({{.LocationCoordinate}}) |
|
{{end}} |
|
{{if and $.ShowUserEmail .Email $.IsSigned (not .KeepEmailPrivate)}} |
|
{{svg "octicon-mail"}} |
|
<a href="mailto:{{.Email}}" rel="nofollow">{{.Email}}</a> |
|
{{end}} |
|
{{svg "octicon-clock"}} {{$.i18n.Tr "user.join_on"}} {{.CreatedUnix.FormatShort}} |
|
{{if .Competences}} |
|
<h4>{{$.i18n.Tr "explore.competences"}}:</h4> |
|
<div>{{(index $.RenderedContent .ID)|Str2html}}</div> |
|
{{end}} |
|
</div> |
|
</div> |
|
</div> |
|
{{else}} |
|
<div>{{$.i18n.Tr "explore.user_no_results"}}</div> |
|
{{end}} |
|
</div> |
|
|
|
{{template "base/paginate" .}} |
|
</div> |
|
</div> |
|
|
|
{{template "base/footer" .}}
|
|
|