Skip to content

Commit 21286d1

Browse files
committed
Part 41.5 - Styling our comments
1 parent 0ed2b6b commit 21286d1

File tree

2 files changed

+58
-3
lines changed

2 files changed

+58
-3
lines changed

public/css/styles.css

+43-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,46 @@
44

55
.form-spacing-top {
66
margin-top: 30px;
7-
}
7+
}
8+
9+
.comment {
10+
margin-bottom: 45px;
11+
}
12+
13+
.author-image {
14+
width: 50px;
15+
height: 50px;
16+
border-radius: 50%;
17+
float: left;
18+
}
19+
20+
.author-name {
21+
float: left;
22+
margin-left: 15px;
23+
}
24+
25+
.author-name>h4 {
26+
margin: 5px 0px;
27+
28+
}
29+
30+
.author-time {
31+
font-size: 11px;
32+
font-style: italic;
33+
color: #aaa;
34+
}
35+
36+
.comment-content {
37+
clear: both;
38+
margin-left: 65px;
39+
font-size: 16px;
40+
line-height: 1.3em;
41+
}
42+
43+
.comments-title {
44+
margin-bottom:45px;
45+
}
46+
47+
.comments-title>span {
48+
margin-right: 15px;
49+
}

resources/views/blog/single.blade.php

+15-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,23 @@
1515

1616
<div class="row">
1717
<div class="col-md-8 col-md-offset-2">
18+
<h3 class="comments-title"><span class="glyphicon glyphicon-comment"></span> {{ $post->comments()->count() }} Comments</h3>
1819
@foreach($post->comments as $comment)
1920
<div class="comment">
20-
<p><strong>Name:</strong> {{ $comment->name }}</p>
21-
<p><strong>Comment:</strong><br/>{{ $comment->comment }}</p><br>
21+
<div class="author-info">
22+
23+
<img src="{{ "https://www.gravatar.com/avatar/" . md5(strtolower(trim($comment->email))) . "?s=50&d=monsterid" }}" class="author-image">
24+
<div class="author-name">
25+
<h4>{{ $comment->name }}</h4>
26+
<p class="author-time">{{ date('F nS, Y - g:iA' ,strtotime($comment->created_at)) }}</p>
27+
</div>
28+
29+
</div>
30+
31+
<div class="comment-content">
32+
{{ $comment->comment }}
33+
</div>
34+
2235
</div>
2336
@endforeach
2437
</div>

0 commit comments

Comments
 (0)