Skip to content

Commit 07ea456

Browse files
committed
<hr> added to loops
1 parent dc4b7c8 commit 07ea456

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

resources/views/index.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
</div>
4646
@foreach( $questions as $question )
4747
@include('containers.question')
48+
<hr>
4849
@endforeach
4950
{{ $questions->links() }}
5051
</div>

resources/views/questions/new.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<P>
2323
<a href="/questions/new" class="btn btn-primary btn-rounded btn-large {{$sort == 'new' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>New</b></a>
2424
<a href="/questions/top" class="btn btn-primary btn-rounded btn-large {{$sort == 'top' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>Top</b></a>
25-
</P>
25+
</P><br>
2626

2727
@foreach( $questions as $question )
2828
@include('containers.question')

resources/views/questions/top.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<P>
2323
<a href="/questions/new" class="btn btn-primary btn-rounded btn-large {{$sort == 'new' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>New</b></a>
2424
<a href="/questions/top" class="btn btn-primary btn-rounded btn-large {{$sort == 'top' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>Top</b></a>
25-
</P>
25+
</P><br>
2626

2727
@foreach( $questions as $question )
2828
@include('containers.question')

resources/views/tag.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<a href="/tag/{{strtolower($tag_info->name)}}/top" class="btn btn-primary btn-rounded btn-large {{$sort == 'top' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>Top</b></a>
2525
<a href="/tag/{{strtolower($tag_info->name)}}/most_answered" class="btn btn-primary btn-rounded btn-large {{$sort == 'top_answered' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>Most Answered</b></a>
2626
<a href="/tag/{{strtolower($tag_info->name)}}/unanswered" class="btn btn-primary btn-rounded btn-large {{$sort == 'not_answered' ? 'disabled' : ''}}" role="button"><i class="fa fa-angle-right" style="color: white;"></i> <b>Unanswered</b></a>
27-
</P>
27+
</P><br>
2828

2929
@foreach( $questions as $question )
3030
@include('containers.question')

0 commit comments

Comments
 (0)