Skip to content

Commit 63bac6f

Browse files
author
Jeroen Gerits
committed
removed some ids from the html templates
1 parent 849f933 commit 63bac6f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/views/articles/_sidebar.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div id="categories" class="categories">
1+
<div class="categories">
22
<h4>Categories</h4>
33
<ul>
44
<li><a href="{{ action('Controllers\ArticlesController@getIndex') }}">All Articles</a></li>

app/views/articles/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@stop
66

77
@section('content')
8-
<section id="articles" class="articles">
8+
<section class="articles">
99
<h2>Articles</h2>
1010

1111
@if($articles->count() > 0)

app/views/layouts/_two_columns_left_sidebar.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<section id="sidebar" class="sidebar">
1+
<section class="sidebar">
22
@section('sidebar')
33
@show
44
</section>

0 commit comments

Comments
 (0)