gitlin/views/user.html

96 行
2.7 KiB
HTML
Raw 通常表示 履歴

{{ template "header" .}}
<main>
2023-03-08 01:43:56 +09:00
{{ if .user }} {{ range $key, $value := .user}}
<div class="button-parent">
<a rel="noreferrer" href="https://github.com/{{.Login}}" class="button">View on GitHub</a>
2023-03-08 01:43:56 +09:00
</div>
<div class="user-profile">
2023-03-08 01:43:56 +09:00
<img
src="{{ .AvatarUrl }}"
alt="{{.Login}}'s avatar"
class="avatar"
width="150"
height="150"
/>
{{ if .Name }}
<h1 class="user-profile-h1">{{.Name}}</h1>
{{ end }}
<h2>{{.Login}}</h2>
{{ if eq .Type "http://schema.org/Person" }}
<p><b>{{.Followers}}</b> followers - <b>{{.Following}}</b> following</p>
{{ else }}
2023-03-08 01:43:56 +09:00
<p><b>{{.Followers}}</b> followers</p>
{{ end }} {{ if .StatusEmoji}}
<p>{{.StatusEmoji}} {{.Status}}</p>
{{ end }} {{ if .Location }}
<p>🌍 {{.Location}}</p>
{{ end }} {{ if .Timezone }}
<p>🕑️ {{.Timezone}}</p>
{{ end }} {{ if .Link }}
<p>🌐 <a href="https://{{.Link}}" target="_blank">{{.Link}}</a></p>
{{ end }} {{ if .Email }}
<p>✉️ {{.Email}}</p>
{{ end }} {{ if .Social }}
<div class="social-links">
2023-03-08 01:43:56 +09:00
{{range .Social}}
<p>🔗 <a href="{{.}}" target="_blank">{{.}}</a></p>
{{ end }}
</div>
{{ end }} {{ if .Organizations }}
<p>
Organizations: {{range .Organizations}}
<a href="/{{.}}" target="_blank">{{.}}</a>
{{ end }}
</p>
{{ end }} {{ if .OrgMembers }}
<p>
Members: {{range .OrgMembers}}
<a href="/{{.}}" target="_blank">@{{.}}</a>
{{ end }}
</p>
{{ end }} {{ if .Company }}
<p>🏢 {{.Company}}</p>
{{ end }} {{ if eq .Type "http://schema.org/Person" }}
<p>
✏️ {{ if .Name }} {{.Name}} {{ else }} {{.Login}} {{ end }} has made
{{.Contributions}}
</p>
{{ end }}
</div>
{{ if .Bio }}
<div class="user-bio">
2023-03-08 01:43:56 +09:00
<h3>Bio</h3>
<p class="user-bio-text">{{.Bio}}</p>
2023-03-08 01:43:56 +09:00
</div>
{{ end }} {{ if .Readme }}
<div class="user-readme">
2023-03-08 01:43:56 +09:00
<h3>README</h3>
<div class="user-readme-text">{{ unescape .Readme}}</div>
2023-03-08 01:43:56 +09:00
</div>
{{ end }} {{ if .MainRepos }}
<div class="user-readme">
<h3>{{.PinOrPopular}} repositories</h2>
2023-03-08 01:43:56 +09:00
{{range .MainRepos}}
<a class="user-repo-card" href="/{{.Name}}">
<p class="user-repo-header">{{.Name}}</p>
2023-03-08 01:43:56 +09:00
{{if .ForkOf}}
Forked from: <a href="/{{.ForkOf}}">{{.ForkOf}}</a>
2023-03-08 01:58:55 +09:00
{{else}} {{end}} {{if .Desc}}
2023-03-08 01:43:56 +09:00
<p class="">{{.Desc}}</p>
{{else}} {{end}}
2023-03-08 01:58:55 +09:00
<p class="">
{{if .Stars}}⭐ {{.Stars}}{{else}}{{end}} {{if .Forks}} 🍴 {{.Forks}}
{{else}}{{end}} {{if .Lang}} 🗒️ {{.Lang}} {{else}}{{end}}
</p>
</a>
{{ end }}
2023-03-08 01:43:56 +09:00
</div>
{{ end }} {{ end }} {{ else }}
<h2>User not found</h2>
<p>That user doesn't exist.</p>
{{ end }}
</main>
2023-03-08 01:58:55 +09:00
{{ template "footer" .}}