Add scroll to top function

Add share buttons to news item
Add logo to footer
This commit is contained in:
Jorit Tijsen
2024-03-20 15:13:59 +01:00
parent 180c5d01be
commit 25b3d41bf1
15 changed files with 184 additions and 20 deletions

View File

@@ -88,8 +88,6 @@
@yield('page')
</div><!--/.page-->
<a class="scroll_top_floater" href="#top" title="Scroll naar boven"></a>
<!-- Footer -->
<div class="footer_container">
<div class="footer_menu">
@@ -134,7 +132,7 @@
<div class="row">
<div class="col-12">
<ul class="footer_menu2">
<li>Logo</li>
<li><a href="{{url('/')}}" class="logo"><img src="/images/logo-NHGooi-diap.svg"/></a></li>
<li><a href="{{url('disclaimer')}}">Disclaimer</a></li>
<li><a href="{{url('privacy-verklaring')}}">Privacy verklaring</a></li>
<li><a href="{{url('cookie-statement')}}">Cookie statement</a></li>

View File

@@ -133,7 +133,6 @@
@include('widgets/share')
--}}
<div class="row page_margin_top">
{{--
<ul class="taxonomies tags left clearfix">
@if($news->keywords)
@@ -145,15 +144,28 @@
@endif
</ul>
--}}
<ul class="post_tags clearfix">
<li>Tags:</li>
<li>
<a href="{{route('nieuws.thema', $news->theme->slug)}}" title="Zoek meer nieuws met het thema {{$news->theme->title}}">{{$news->theme->title}}</a>
</li>
<li>
<a href="{{route('nieuws.regio', $news->region->slug)}}" title="Zoek meer nieuws uit de regio {{$news->region->title}}">{{$news->region->title}}</a>
</li>
</ul>
<ul class="post_tags clearfix">
<li>Tags:</li>
<li>
<a href="{{route('nieuws.thema', $news->theme->slug)}}" title="Zoek meer nieuws met het thema {{$news->theme->title}}">{{$news->theme->title}}</a>
</li>
<li>
<a href="{{route('nieuws.regio', $news->region->slug)}}" title="Zoek meer nieuws uit de regio {{$news->region->title}}">{{$news->region->title}}</a>
</li>
</ul>
<div class="share_buttons row">
<div class="col-12 col-md-auto">
<a data-share="facebook" href="javascript:void(0)" class="btn btn_facebook_share">
<i class="fa-brands fa-facebook-f"></i>
Deel op Facebook
</a>
</div>
<div class="col-12 col-md-auto">
<a data-share="twitter_x" href="javascript:void(0)" class="btn btn_twitter_x_share">
<i class="fa-brands fa-twitter"></i>
Deel op Twitter
</a>
</div>
</div>
</div>
</div>