not-interested.blade.php 902 B

12345678910111213141516171819202122232425
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container px-0 mt-0 mt-md-4 mb-md-5 pb-md-5">
  4. <div class="col-12 px-0 col-md-8 offset-md-2">
  5. <div class="card">
  6. <div class="card-header lead font-weight-bold bg-white">
  7. I'm not interested in this content
  8. </div>
  9. <div class="card-body">
  10. <div class="p-5 text-center">
  11. <p class="lead">You can <b class="font-weight-bold">unfollow</b> or <b class="font-weight-bold">mute</b> a user or hashtag from appearing in your timeline. Unless the content violates our terms of service, there is nothing we can do to remove it.</p>
  12. </div>
  13. {{-- <div class="col-12 col-md-8 offset-md-2">
  14. <p><a class="font-weight-bold" href="#">
  15. Learn more
  16. </a> about our reporting guidelines and policy.</p>
  17. </div> --}}
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. @endsection