1
0

safety-tips.blade.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Safety Tips'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Safety Tips</h3>
  5. </div>
  6. <hr>
  7. {{-- <div class="card mb-3">
  8. <div class="card-body">
  9. <div class="row">
  10. <div class="col-12 col-md-3 text-center">
  11. <div class="icon-wrapper">
  12. <i class="fas fa-exclamation-circle fa-3x text-light"></i>
  13. </div>
  14. </div>
  15. <div class="col-12 col-md-9 d-flex align-items-center">
  16. <div class="text-center">
  17. <p class="h3 font-weight-bold mb-0">Work In Progress</p>
  18. <p class="font-weight-light mb-0">We haven't finished it yet, it will be updated soon!</p>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. --}}
  25. <p class="lead py-4">We are committed to building a fun, easy to use photo sharing platform that is safe and secure for everyone.</p>
  26. <div class="card border-left-blue mb-3">
  27. <div class="card-body">
  28. <p class="h5">Know the rules</p>
  29. <p class="mb-0">To keep yourself safe, it is important to know the <a href="{{route('site.terms')}}">terms of service</a> rules.</p>
  30. </div>
  31. </div>
  32. <div class="card border-left-blue mb-3">
  33. <div class="card-body">
  34. <p class="h5">Know the age guidelines</p>
  35. <p class="mb-0">Please keep in mind that Pixelfed is meant for people over the age of 16 or 13 depending on where you live.</p>
  36. </div>
  37. </div>
  38. <div class="card border-left-blue mb-3">
  39. <div class="card-body">
  40. <p class="h5">Report problematic content</p>
  41. <p class="mb-0">You can report content that you think is in violation of our policies.</p>
  42. </div>
  43. </div>
  44. <div class="card border-left-blue mb-3">
  45. <div class="card-body">
  46. <p class="h5">Understanding content visibility</p>
  47. <p class="mb-0">You can limit the visibility of your content to specific people, followers, public and more.</p>
  48. </div>
  49. </div>
  50. <div class="card border-left-blue mb-3">
  51. <div class="card-body">
  52. <p class="h5">Make your account or posts private</p>
  53. <p class="mb-0">You can make your account private and vet new follow requests to control who your posts are shared with.</p>
  54. </div>
  55. </div>
  56. @endsection