diff --git a/client/app/components/comments/comments.html b/client/app/components/comments/comments.html new file mode 100644 index 0000000..15ade5f --- /dev/null +++ b/client/app/components/comments/comments.html @@ -0,0 +1,37 @@ +
+
+ Comments +
+
+ +
+
\ No newline at end of file diff --git a/client/app/components/comments/comments.jade b/client/app/components/comments/comments.jade deleted file mode 100644 index b5712ac..0000000 --- a/client/app/components/comments/comments.jade +++ /dev/null @@ -1,45 +0,0 @@ -.block - .block-title - h2 - strong Comments - .block-content-full - // You can remove the class .media-feed-hover if you don't want each event to be highlighted on mouse hover - ul.media-list.media-feed.media-feed-hover - li.media - form.form-horizontal - .form-group - .col-xs-12 - textarea.form-control(ng-model="newComment" rows='4' placeholder='Compose a comment..') - .form-group - .col-xs-6 - .btn-group(ng-show="false") - button.btn.btn-default(type='button' tooltip data-toggle='tooltip' title='Add Image') - i.fa.fa-picture-o - button.btn.btn-default(type='button' tooltip data-toggle='tooltip' title='Add Location') - i.fa.fa-location-arrow - button.btn.btn-default(type='button' tooltip data-toggle='tooltip' title='Add Recording') - i.fa.fa-microphone - .col-xs-6.text-right - button.btn.btn-default(type='submit' ng-click="postComment()") - i.fa.fa-pencil - | POST - li.media(ng-repeat="comment in comments" ng-animate="'animate'") - a.pull-left() - img.img-circle.user-profile-insert-medium(ng-src='{{comment.avatar_image}}', alt='{{comment.user.display_name}}') - .media-body - p.push-bit - span.text-muted.pull-right - small {{comment.date_created|humanise}} - span.text-info() - i.fa.fa-globe - strong - a(ui-sref='root.user({user: comment.slug})') {{comment.display_name}} - | commented. - p {{comment.comment}} - p - a.btn.btn-xs.btn-default(href='javascript:void(0)') - i.fa.fa-thumbs-o-up - | Like - a.btn.btn-xs.btn-default(ng-click='deleteComment(comment)') - i.fa.fa-remove - | Delete diff --git a/client/app/components/navbar/navbar.html b/client/app/components/navbar/navbar.html index 19e9cf5..8651cca 100755 --- a/client/app/components/navbar/navbar.html +++ b/client/app/components/navbar/navbar.html @@ -7,7 +7,7 @@
-
-
- - - +
+ -
- - - - {{ mix.likes.length }} - -
-
- - +
+
+ + + +
+
+ + + +
+ +
+ + +
diff --git a/client/app/views/mixes/item/mix.html b/client/app/views/mixes/item/mix.html new file mode 100644 index 0000000..cfc73b6 --- /dev/null +++ b/client/app/views/mixes/item/mix.html @@ -0,0 +1,22 @@ +
+
+ +
+
+
+
+
+
+
+ {{mix.title}} +
+
+ + +
+
+
+
+ +
+
\ No newline at end of file diff --git a/client/app/views/mixes/item/mix.jade b/client/app/views/mixes/item/mix.jade deleted file mode 100644 index 7d9b9c1..0000000 --- a/client/app/views/mixes/item/mix.jade +++ /dev/null @@ -1,15 +0,0 @@ -.row.mix-audio-container - .col-md-12#mix-audio-container - dss-audio-player(template='directives/audio/audio.player.html') -.row - .col-sm-6 - .block.full.dss-mix-item - .block-title - .block-options.pull-right - a.btn.btn-sm.btn-alt.btn-default(data-toggle='tooltip', title='Description' ng-show="false") - i.fa.fa-ticket - h2 - strong Description - span(ng-bind-html='mix.description | dssHtml') - .col-sm-6 - dss-comments diff --git a/client/app/views/mixes/mixes.less b/client/app/views/mixes/mixes.less index 1123368..75199bd 100755 --- a/client/app/views/mixes/mixes.less +++ b/client/app/views/mixes/mixes.less @@ -110,7 +110,7 @@ } .image-container { - height: 142px; + height: 160px; //background-repeat: no-repeat; display: flex; justify-content: center; diff --git a/package.json b/package.json index 65ca2e6..a3d1e87 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dssweb", - "version": "4.0.2", + "version": "4.0.3", "main": "server/app.js", "dependencies": { "body-parser": "~1.5.0",