Bugfixes Sidebar
This commit is contained in:
@@ -57,8 +57,8 @@
|
|||||||
<p>
|
<p>
|
||||||
{!! Str::ucfirst(words($post->content, 45)) !!}
|
{!! Str::ucfirst(words($post->content, 45)) !!}
|
||||||
</p>
|
</p>
|
||||||
<a href="{{ route('read_post', $post->slug) }}" class="btn btn-outline-primary">Read
|
<a href="{{ route('read_post', $post->slug) }}" class="btn btn-outline-primary">Mehr
|
||||||
more...</a>
|
lesen...</a>
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
@endif
|
||||||
@@ -96,8 +96,8 @@
|
|||||||
<p>
|
<p>
|
||||||
{!! Str::ucfirst(words($post->content, 30)) !!}
|
{!! Str::ucfirst(words($post->content, 30)) !!}
|
||||||
</p>
|
</p>
|
||||||
<a href="{{ route('read_post', $post->slug) }}" class="btn btn-outline-primary">Read
|
<a href="{{ route('read_post', $post->slug) }}" class="btn btn-outline-primary">Mehr
|
||||||
more...</a>
|
lesen...</a>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
@endforeach
|
@endforeach
|
||||||
@@ -122,13 +122,13 @@
|
|||||||
<li class="media widget-post align-items-center">
|
<li class="media widget-post align-items-center">
|
||||||
<a href="{{ route('read_post', $item->slug) }}">
|
<a href="{{ route('read_post', $item->slug) }}">
|
||||||
<img loading="lazy" class="mr-3" alt="post-thumb"
|
<img loading="lazy" class="mr-3" alt="post-thumb"
|
||||||
src="/images/posts/resized/thumb_{{ $post->featured_image }}">
|
src="/images/posts/resized/thumb_{{ $item->featured_image }}">
|
||||||
</a>
|
</a>
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h6 class="mb-0">
|
<h6 class="mb-0">
|
||||||
<a href="{{ route('read_post', $item->slug) }}">{{ $item->title }}</a>
|
<a href="{{ route('read_post', $item->slug) }}">{{ $item->title }}</a>
|
||||||
</h6>
|
</h6>
|
||||||
<small>{{ date_formatter($post->created_at) }}</small>
|
<small>{{ date_formatter($item->created_at) }}</small>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user