post.tpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<article>
<header>
<div class="container postheader-grid">
<img class="profileimage" src="{{.Actor.Icon.URL}}"/>
<div class="profileheader">
<strong>{{.Actor.Name}}</strong><br/><small>{{.Actor.ID}}</small>
</div>
</div>
</header>
{{.ContentHTML}}
<footer>
<div class="">
<span>
<a role="button" class="btn" href="/new?parent={{.ID}}"><span classs="middle">Reply 🗨</span></a>
<form class="inlineform" action="/like" method="POST">
<input type="hidden" name="target" value="{{.ID}}"/>
<button type="submit" class="btn">
<span classs="middle">
<span class="counter">{{.Likes}}</span><span class="separator"></span>Likes</button>
</span>
</form>
<form class="inlineform" action="/share" method="POST">
<input type="hidden" name="target" value="{{.ID}}"/>
<button type="submit" class="btn">
<span classs="middle">
<span class="counter">{{.Shares}}</span><span class="separator"></span>Shares</button>
</span>
</form>
</span>
<small style="float:right;"><a href="{{.Link}}">{{.Created.Format "Jan 02, 2006 15:04"}}</a></small>
</div>
</footer>
</article>
|