mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
79d4ff4b08
Now it's mostly CSS 2.1 compliant. All the images now use the height attribute to limit the size on browsers that don't support CSS.
38 lines
1.3 KiB
Cheetah
38 lines
1.3 KiB
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
|
|
<div class="user-info">
|
|
<div class="user-info-img-container">
|
|
<a class="img-link" href="/timeline/home" title="home">
|
|
<img class="user-info-img" src="{{.User.AvatarStatic}}" alt="profile-avatar" height="64" />
|
|
</a>
|
|
</div>
|
|
<div class="user-info-details-container">
|
|
<div>
|
|
<span class="status-dname"> {{EmojiFilter .User.DisplayName .User.Emojis}} </span>
|
|
<a class="nav-link" href="/user/{{.User.ID}}">
|
|
<span class="status-uname"> {{.User.Acct}} </span>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<a class="nav-link" href="/timeline/home">home</a>
|
|
<a class="nav-link" href="/timeline/direct">direct</a>
|
|
<a class="nav-link" href="/timeline/local">local</a>
|
|
<a class="nav-link" href="/timeline/twkn">twkn</a>
|
|
<a class="nav-link" href="/search">search</a>
|
|
<a class="nav-link" href="/about">about</a>
|
|
</div>
|
|
<div>
|
|
<a class="nav-link" href="/settings" target="_top">settings</a>
|
|
<form class="signout" action="/signout" method="post" target="_top">
|
|
<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
|
|
<input type="submit" value="signout" class="btn-link nav-link">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "postform.tmpl" (WithContext .PostContext $.Ctx)}}
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|