source: RedSur/app/assets/templates/status-message_tpl.jst.hbs

profile_fields
Last change on this file was a5c4926, checked in by aosorio <aosorio@…>, 8 years ago

Agregadas nuevas estructuras del profile para el registro de entes de apoyo

  • Property mode set to 100644
File size: 1.3 KB
Line 
1<div class="nsfw-shield">
2  <strong>
3    #NSFW
4  </strong>
5  |
6  <a href="#" class="show_nsfw_post">
7    {{t "stream.show_nsfw_post"}}
8  </a>
9  |
10  <a href="#" class="toggle_nsfw_state">
11    {{t "stream.show_nsfw_posts"}}
12  </a>
13</div>
14
15<div class="nsfw-off">
16  <strong>
17    #NSFW
18  </strong>
19  |
20  <a href="#" class="toggle_nsfw_state">
21      {{t "stream.hide_nsfw_posts"}}
22  </a>
23</div>
24
25{{#if largePhoto}}
26  <div class="photo_attachments nsfw-hidden">
27    {{#with largePhoto}}
28      <a href="{{sizes.large}}" class="stream-photo-link gallery-picture">
29        <img src="{{sizes.large}}" class="stream-photo big_stream_photo">
30      </a>
31    {{/with}}
32
33    {{#each smallPhotos}}
34      <a href="{{sizes.large}}" class="stream-photo-link gallery-picture">
35        <img src="{{sizes.small}}" class="stream-photo thumb_small">
36      </a>
37    {{/each}}
38  </div>
39{{/if}}
40
41<div class="collapsible nsfw-hidden">
42  <div class="markdown-content">
43    {{#if text}}
44      {{{text}}}
45    {{else}}
46      {{#unless largePhoto}}
47        {{#if isReshare}}
48          <div class="reshare">
49            <p>
50              {{t "stream.original_post_deleted"}}
51            </p>
52          </div>
53        {{/if}}
54      {{/unless}}
55    {{/if}}
56  </div>
57  <div class="oembed"></div>
58  <div class="opengraph"></div>
59  <div class="poll"></div>
60</div>
Note: See TracBrowser for help on using the repository browser.