Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6266 | Rev 6678 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6094 stevensc 1
<?php
2
 
6056 efrain 3
use LeadersLinked\Model\ContentReaction;
4
 
5
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
6
$currentUser    = $this->currentUserHelper();
7
$roleName       = $currentUser->getUserTypeId();
8
 
9
 
10
$this->inlineScript()->appendFile($this->basePath('vendors/ckeditor/ckeditor.js'));
11
 
12
$this->headLink()->appendStylesheet($this->basePath('vendors/nprogress/nprogress.css'));
13
$this->inlineScript()->appendFile($this->basePath('vendors/nprogress/nprogress.js'));
14
 
15
$this->inlineScript()->appendFile($this->basePath('vendors/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
16
$this->inlineScript()->appendFile($this->basePath('vendors/jsrender/jsrender.min.js'));
17
 
18
 
19
 
20
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/jquery.validate.js'));
21
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/additional-methods.js'));
22
$this->inlineScript()->appendFile($this->basePath('vendors/jquery-validation/localization/messages_es.js'));
23
 
24
 
25
 
26
$this->inlineScript()->captureStart();
27
echo <<<JS
28
 
29
 
30
 
31
jQuery( document ).ready(function( $ ) {
32
 
33
    $.fn.reload = function() {
34
        NProgress.start();
35
 
36
        $('.posts-section').show();
37
        $.ajax({
38
            'dataType'  : 'json',
39
            'accept'    : 'application/json',
40
            'method'    : 'get',
41
            'url'       :  '$routeComments'
42
        }).done(function(response) {
43
            if(response['success']) {
44
                $('#comment-list').html(
45
                    $( "#commentTemplate" ).render( response['data'])
46
                );
47
 
48
            } else {
49
                $.fn.showError(response['data']);
50
            }
51
 
52
 
53
        }).fail(function( jqXHR, textStatus, errorThrown) {
54
            $.fn.showError(textStatus);
55
        }).always(function() {
56
            $('.posts-section').hide();
57
           NProgress.done();
58
        });
59
 
60
    }
61
 
62
 
63
    $.fn.showFormErrorValidator = function(fieldname, errors) {
64
        var field = $(fieldname);
65
        if(field) {
66
            $(field).addClass('is-invalid');
67
 
68
 
69
            var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
70
            if(element.parent('.btn-file').length) {
71
                error.insertAfter(element.parent().parent());
72
            } else if(element.parent('.toggle').length) {
73
                error.insertAfter(element.parent().parent());
74
            } else {
75
                error.insertAfter(element.parent());
76
            }
77
        }
78
    };
79
 
80
 
81
    var validator = $('#form-comment').validate({
82
        debug: true,
83
        onclick: false,
84
        onkeyup: false,
85
        ignore: [],
86
        rules: {
87
            'comment': {
88
                required: true,
6266 stevensc 89
                maxlength: 256
6056 efrain 90
            },
91
        },
92
        submitHandler: function(form)
93
        {
94
 
95
			NProgress.start();
96
            $.ajax({
97
                    'dataType'  : 'json',
98
                    'accept'    : 'application/json',
99
                    'method'    : 'post',
100
                    'url'       : '$routeCommentAdd',
101
                    'data'      :  $('#form-comment').serialize()
102
 
103
            }).done(function(response) {
104
				if(response['success']) {
105
                    $('#form-comment #comment').val('');
106
                    $('#comment-list').append(
107
                        $( "#commentTemplate" ).render( response['data'])
108
                    );
109
                } else {
110
                    validator.resetForm();
111
                    if(jQuery.type(response['data']) == 'string') {
112
                        $.fn.showError(response['data']);
113
                    } else  {
114
                        $.each(response['data'], function( fieldname, errors ) {
115
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
116
                        });
117
                    }
118
                }
119
            }).fail(function( jqXHR, textStatus, errorThrown) {
120
                $.fn.showError(textStatus);
121
            }).always(function() {
122
                NProgress.done();
123
            });
124
            return false;
125
        },
126
        invalidHandler: function(form, validator) {
127
 
128
        }
129
    });
130
 
131
 
132
    $('body').on('click', 'a.btn-comment-trash', function(e) {
133
        e.preventDefault();
134
        var action = $(this).data('link');
135
        var unique = $(this).data('comment-unique');
136
 
137
 
138
        NProgress.start();
139
        $.ajax({
140
            'dataType'  : 'json',
141
            'accept'    : 'application/json',
142
            'method'    : 'post',
143
            'url'       :  action,
144
        }).done(function(response) {
145
            if(response['success']) {
146
               $('div.comment-' + unique).remove();
147
            } else {
148
                $.fn.showError(response['data']);
149
            }
150
        }).fail(function( jqXHR, textStatus, errorThrown) {
151
            $.fn.showError(textStatus);
152
        }).always(function() {
153
            NProgress.done();
154
        });
155
 
156
    });
157
 
158
    $('body').on('click', 'button.btn-save-reaction', function(e) {
159
        e.preventDefault();
160
        var reaction = $(this).data('reaction');
161
 
162
        NProgress.start();
163
        $.ajax({
164
            'dataType'  : 'json',
165
            'accept'    : 'application/json',
166
            'method'    : 'post',
167
            'url'       :  '$routeSaveReaction',
168
            'data'      : {
169
                'reaction' : reaction
170
            }
171
        }).done(function(response) {
172
            if(response['success']) {
6164 stevensc 173
                 $('#currentReaction').attr('data-reaction', reaction);
6056 efrain 174
                 $('#currentReaction').html(
175
                    $('#reactionTemplate').render({reaction: reaction})
176
                );
177
            } else {
178
                $.fn.showError(response['data']);
179
            }
180
        }).fail(function( jqXHR, textStatus, errorThrown) {
181
            $.fn.showError(textStatus);
182
        }).always(function() {
183
            NProgress.done();
184
        });
185
 
186
    });
187
 
6166 stevensc 188
    $('body').on('click', 'button#currentReaction', function(e) {
6056 efrain 189
        e.preventDefault();
6164 stevensc 190
        var reaction = $(this).data('reaction');
6056 efrain 191
 
6164 stevensc 192
        if(!reaction) return
6056 efrain 193
 
194
        NProgress.start();
195
        $.ajax({
196
            'dataType'  : 'json',
197
            'accept'    : 'application/json',
198
            'method'    : 'post',
199
            'url'       :  '$routeDeleteReaction',
200
        }).done(function(response) {
201
            if(response['success']) {
6164 stevensc 202
                $('#currentReaction').html(
6056 efrain 203
                    $('#reactionTemplate').render({reaction: ''})
6164 stevensc 204
            );
205
        } else {
206
            $.fn.showError(response['data']);
207
        }
6056 efrain 208
        }).fail(function( jqXHR, textStatus, errorThrown) {
209
            $.fn.showError(textStatus);
210
        }).always(function() {
211
            NProgress.done();
212
        });
213
    });
214
 
6138 stevensc 215
    let isMouseHover;
216
 
6126 stevensc 217
    $('body').on('mouseover', '#reaction-container', function(e) {
6138 stevensc 218
        isMouseHover = true;
6120 stevensc 219
        setTimeout(() => {
6125 stevensc 220
            $('.reactions').addClass('active');
6120 stevensc 221
        }, 500);
6116 stevensc 222
    });
6056 efrain 223
 
6126 stevensc 224
    $('body').on('mouseout', '#reaction-container', function(e) {
6143 stevensc 225
        isMouseHover = false;
6136 stevensc 226
        setTimeout(() => {
6143 stevensc 227
            if(!isMouseHover) {
6138 stevensc 228
                $('.reactions').removeClass('active');
229
            }
6143 stevensc 230
        }, 500);
6125 stevensc 231
    });
232
 
6056 efrain 233
    $('#paginator-process-comm').click(function(e) {
234
        e.preventDefault();
235
 
236
        var next_page = $(this).data('next-page');
237
        $.fn.reload(false, next_page);
238
 
239
    });
240
 
241
    $.fn.reload();
242
 
243
 
244
 
245
    $('#currentReaction').html(
246
        $('#reactionTemplate').render({reaction: '$reaction'})
247
    );
248
});
249
JS;
6101 stevensc 250
 
6056 efrain 251
$this->inlineScript()->captureEnd();
6101 stevensc 252
$this->headLink()->appendStylesheet('/look-and-field/knowledge.css');
6149 stevensc 253
$this->headLink()->appendStylesheet('/look-and-field/dashboard.css');
6056 efrain 254
 
255
?>
256
 
6113 stevensc 257
<section class="companies-info container px-0">
6094 stevensc 258
    <div class="company-title">
259
        <h1 class="title mx-auto">LABEL_KNOWLEDGE_AREA_TITLE</h1>
260
    </div>
6056 efrain 261
 
6094 stevensc 262
    <div class="row">
6253 stevensc 263
        <div class="col-12 col-md-8 mx-auto">
6113 stevensc 264
 
6056 efrain 265
            <div class="knowledge-record-card">
6103 stevensc 266
                <img src="<?php echo $image ?>" alt="">
267
                <h3><?php echo $category ?></h3>
268
                <h2><?php echo $title ?></h2>
269
                <p><?php echo $description ?></p>
6254 stevensc 270
                <div class="knowledge-record-card-actions">
6267 stevensc 271
                    <div class="position-relative" id="reaction-container">
6262 stevensc 272
                        <button class="btn reaction-btn" id="currentReaction"></button>
6254 stevensc 273
                        <div class="reactions">
274
                            <button class="btn-save-reaction" data-reaction="<?php echo ContentReaction::REACTION_RECOMMENDED ?>" title="Me gusta">
275
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: rgb(116, 5, 249);">
276
                                    <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
277
                                </svg>
278
                            </button>
279
                            <button class="btn-save-reaction" data-reaction="<?php echo ContentReaction::REACTION_SUPPORT ?>" title="Dar apoyo">
280
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="VolunteerActivismIcon" style="color: rgb(100, 149, 237);">
281
                                    <path d="M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM20 17h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8.01-3c-.01-1.1-.9-2-2.01-2z"></path>
282
                                </svg>
283
                            </button>
284
                            <button class="btn-save-reaction" data-reaction="<?php echo ContentReaction::REACTION_LOVE ?>" title="Me encanta">
285
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="FavoriteTwoToneIcon" style="color: rgb(223, 112, 77);">
286
                                    <path d="M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z" opacity=".3"></path>
287
                                    <path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"></path>
288
                                </svg>
289
                            </button>
290
                            <button class="btn-save-reaction" data-reaction="<?php echo ContentReaction::REACTION_INTEREST ?>" title="Me interesa">
291
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="TungstenIcon" style="color: rgb(245, 187, 92);transform: rotate(180deg);">
292
                                    <path d="M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z"></path>
293
                                </svg>
294
                            </button>
295
                            <button class="btn-save-reaction" data-reaction="<?php echo ContentReaction::REACTION_FUN ?>" title="Me divierte">
296
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="EmojiEmotionsIcon" style="color: rgb(255, 127, 80);">
297
                                    <path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path>
298
                                </svg>
299
                            </button>
300
                        </div>
301
                    </div>
6094 stevensc 302
                    <?php if ($attachment) : ?>
6263 stevensc 303
                        <a href="<?php echo $attachment ?>" target="_blank">
6262 stevensc 304
                            <button class="btn reaction-btn">
305
                                <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="DownloadForOfflineIcon" style="color: gray;">
6263 stevensc 306
                                    <path d="M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2  z"></path>
6262 stevensc 307
                                </svg>
308
                                LABEL_KNOWLEDGE_AREA_DOWNLOAD_ATTACHMENT
309
                            </button>
310
                        </a>
6056 efrain 311
                    <?php endif; ?>
6094 stevensc 312
                    <?php if ($link) : ?>
6262 stevensc 313
                        <a href="<?php echo $link ?>" target="_blank" style="flex: 1;">
314
                            <button class="btn reaction-btn">
315
                                LABEL_KNOWLEDGE_AREA_GO_TO_LINK
316
                            </button>
317
                        </a>
6056 efrain 318
                    <?php endif; ?>
319
                </div>
6151 stevensc 320
                <div class="comments-container show px-3">
6153 stevensc 321
                    <form class="feedCommentContainer" id="form-comment" class="form-comment">
6266 stevensc 322
                        <input class="commentInput" type="text" name="comment" id="comment" maxlength="256" placeholder="LABEL_WRITE_A_COMMENT">
6151 stevensc 323
                        <button class="btn btn-primary" type="submit">LABEL_SEND</button>
324
                    </form>
325
                    <ul id="comment-list" class="comment-list">
326
                    </ul>
327
                </div>
6056 efrain 328
            </div>
6113 stevensc 329
 
6094 stevensc 330
        </div>
6113 stevensc 331
    </div>
6056 efrain 332
 
6094 stevensc 333
    <div class="row">
334
        <div class="col-12 ">
335
            <div class="posts-section">
336
                <div class="process-comm" id="paginator-process-comm">
337
                    <div class="spinner">
338
                        <div class="bounce1"></div>
339
                        <div class="bounce2"></div>
340
                        <div class="bounce3"></div>
341
                    </div>
342
                </div>
343
            </div>
6103 stevensc 344
 
6056 efrain 345
        </div>
6149 stevensc 346
        <?php ?>
347
    </div>
348
    </div>
6056 efrain 349
</section>
350
 
351
 
352
<script id="reactionTemplate" type="text/x-jsrender">
6094 stevensc 353
    {{if reaction === '<?php echo ContentReaction::REACTION_FUN ?>'}}
354
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="EmojiEmotionsIcon" style="color: rgb(255, 127, 80);">
355
        <path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path>
356
    </svg>
6164 stevensc 357
    Me Divierte
6094 stevensc 358
    {{/if}}
359
    {{if reaction === '<?php echo ContentReaction::REACTION_INTEREST ?>'}}
6169 stevensc 360
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="TungstenIcon" style="color: rgb(245, 187, 92);transform: rotate(180deg);">
6094 stevensc 361
        <path d="M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.8014 1.4072-1.4071 2.1213 2.1213-1.4071 1.4071zm-11.3099.7071 2.1214-2.1213 1.4071 1.4072-2.1213 2.1213zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z"></path>
362
    </svg>
6164 stevensc 363
    Me Interesa
6094 stevensc 364
    {{/if}}
365
    {{if reaction === '<?php echo ContentReaction::REACTION_LOVE ?>'}}
366
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="FavoriteTwoToneIcon" style="color: rgb(223, 112, 77);">
367
        <path d="M16.5 5c-1.54 0-3.04.99-3.56 2.36h-1.87C10.54 5.99 9.04 5 7.5 5 5.5 5 4 6.5 4 8.5c0 2.89 3.14 5.74 7.9 10.05l.1.1.1-.1C16.86 14.24 20 11.39 20 8.5c0-2-1.5-3.5-3.5-3.5z" opacity=".3"></path>
368
        <path d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"></path>
369
    </svg>
6164 stevensc 370
    Me Encanta
6094 stevensc 371
    {{/if}}
372
    {{if reaction === '<?php echo ContentReaction::REACTION_RECOMMENDED ?>'}}
373
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: rgb(116, 5, 249);">
374
        <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
375
    </svg>
6164 stevensc 376
    Recomendado
6094 stevensc 377
    {{/if}}
378
    {{if reaction === '<?php echo ContentReaction::REACTION_SUPPORT ?>'}}
379
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="VolunteerActivismIcon" style="color: rgb(100, 149, 237);">
380
        <path d="M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM20 17h-7l-2.09-.73.33-.94L13 16h2.82c.65 0 1.18-.53 1.18-1.18 0-.49-.31-.93-.77-1.11L8.97 11H7v9.02L14 22l8.01-3c-.01-1.1-.9-2-2.01-2z"></path>
381
    </svg>
6164 stevensc 382
    Lo Apoyo
6094 stevensc 383
    {{/if}}
6164 stevensc 384
    {{if reaction === ''}}
385
    <svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-vubbuv" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="RecommendIcon" style="color: gray;">
386
        <path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm6 9.8a.9.9 0 0 1-.1.5l-2.1 4.9a1.34 1.34 0 0 1-1.3.8H9a2 2 0 0 1-2-2v-5a1.28 1.28 0 0 1 .4-1L12 5l.69.69a1.08 1.08 0 0 1 .3.7v.2L12.41 10H17a1 1 0 0 1 1 1z"></path>
387
    </svg>
388
    Reaccionar
389
    {{/if}}
6056 efrain 390
</script>
391
 
392
 
393
<script id="commentTemplate" type="text/x-jsrender">
394
    <li>
6149 stevensc 395
        <div class="comment-container">
396
	        <div class="comment-content comment-{{:unique}}" >
397
	            <div class="info">
398
                    <a href="{{>user_url}}">
399
                        <h3>{{>user_name}}</h3>
400
                    </a>
401
                    <span>
402
                        {{>time_elapsed}}
403
                        {{if link_delete}}
404
                        <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}">
405
                            <i class="fa fa-trash"></i>
406
                        </a>
407
                        {{/if}}
6056 efrain 408
                    </span>
6149 stevensc 409
                </div>
6056 efrain 410
		      <p>{{>comment}}</p>
411
		  </div>
412
	   </div>
413
    </li>
6094 stevensc 414
</script>