gitlin/views/user.html

67 行
2.4 KiB
HTML
Raw 通常表示 履歴

{{ template "header" .}}
<main>
{{ if .user }}
{{ range $key, $value := .user}}
<div class="buttonParent">
<a href="https://github.com/{{.Login}}" class="button">View on GitHub</a>
</div>
<div class="userProfile">
<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 }}
<p><b>{{.Followers}}</b> followers</p>
{{ end }}
{{ if .Location }}
<p>🌍 {{.Location}}</p>
{{ end }}
2023-02-08 22:27:45 +09:00
{{ if .Timezone }}
<p>🕑️ {{.Timezone}}</p>
2023-02-08 22:55:03 +09:00
{{ end }}
{{ if .Link }}
2023-02-08 23:17:30 +09:00
<p>🌐 <a href="https://{{.Link}}" target="_blank">{{.Link}}</a></p>
{{ end }}
{{ if .Link1 }}
<p>🔗 <a href="https://{{.Link1}}" target="_blank">{{.Link1}}</a></p>
{{ end }}
{{ if .Link2 }}
<p>🔗 <a href="https://{{.Link2}}" target="_blank">{{.Link2}}</a></p>
{{ end }}
{{ if .Link3 }}
<p>🔗 <a href="https://{{.Link3}}" target="_blank">{{.Link3}}</a></p>
{{ end }}
{{ if .Link4 }}
<p>🔗 <a href="https://{{.Link4}}" target="_blank">{{.Link4}}</a></p>
{{ end }}
{{ if .Company }}
<p>🏢 {{.Company}}</p>
{{ end }}
2023-02-08 22:27:45 +09:00
{{ if eq .Type "http://schema.org/Person" }}
<p>✏️ {{ if .Name }} {{.Name}} {{ else }} {{.Login}} {{ end }} has made {{.Contributions}}</p>
{{ end }}
</div>
{{ if .Bio }}
<div class="userBio">
<h3>Bio</h3>
<p class="userBioText">{{.Bio}}</p>
</div>
{{ end }}
{{ if .Readme }}
<div class="userReadme">
<h3>README</h3>
<div class="userReadmeText">{{ unescape .Readme}}</div>
</div>
{{ end }}
{{ end }}
{{ else }}
<h2>User not found</h2>
<p>That user doesn't exist.</p>
{{ end }}
</main>