Welcome to mirror list, hosted at ThFree Co, Russian Federation.

small-frame.jst.hbs « templates « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51b7158b53349e28144fd9a9bc087bd7d40fa6d8 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
<div class="content">
    <div class=controls>
        <a href="#" class="delete"></a>
    </div>

    {{#if photos}}
        <div class="image-container">
            {{#each photos}}
                <img src="{{sizes.large}}" style="height:{{../adjustedImageHeight}}px;" />
            {{/each}}
        </div>
    {{/if}}

    {{#if object_url}}
        <div class="image-container">
            <a href="{{object_url}}" class="stream-photo-link">
                <img src="{{image_url}}" data-small-photo="{{image_url}}" data-full-photo="{{image_url}}" class="stream-photo" />
            </a>
        </div>
    {{/if}}

    <div class="embed-frame" />

    {{#if text}}
        <div class="text-content">
            {{{text}}}
        </div>
        <div class="background-color"></div>
    {{/if}}

    <div class="info">
        {{#if root}}
            {{#linkToPerson root.author}}
                {{{personImage this}}
            {{/linkToPerson}}
        {{/if}}

        <i class="icon-time timestamp" title="{{created_at}}" rel="tooltip"></i>
        <i class="icon-chevron-right permalink" title="View Post" rel="tooltip"></i>

        <i class="icon-heart"></i> {{likes_count}}
        <i class="icon-retweet"></i> {{reshares_count}}
        <i class="icon-comment"></i> {{comments_count}}

    </div>
</div>