timelines.blade.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Timelines'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Timelines</h3>
  5. </div>
  6. <hr>
  7. <p class="lead">Timelines are chronological feeds of posts.</p>
  8. <p class="font-weight-bold h5 py-3">Pixelfed has 2 different timelines:</p>
  9. <ul>
  10. <li class="lead">
  11. <span class="font-weight-bold"><i class="fas fa-home text-muted mr-2"></i> Personal</span>
  12. <span class="px-2">&mdash;</span>
  13. <span class="font-weight-light">Timeline with posts from accounts you follow</span>
  14. </li>
  15. <li class="lead">
  16. <span class="font-weight-bold"><i class="far fa-map text-muted mr-2"></i> Public</span>
  17. <span class="px-2">&mdash;</span>
  18. <span class="font-weight-light">Timeline with posts from other users on the same instance</span>
  19. </li>
  20. {{-- <li class="lead text-muted">
  21. <span class="font-weight-bold"><i class="fas fa-globe text-muted mr-2"></i> Network</span>
  22. <span class="px-2">&mdash;</span>
  23. <span class="font-weight-light text-muted">Timeline with posts from local and remote accounts - coming soon!</span>
  24. </li> --}}
  25. </ul>
  26. <div class="py-3"></div>
  27. <div class="card bg-primary border-primary" style="box-shadow: none !important;border: 3px solid #08d!important;">
  28. <div class="card-header text-light font-weight-bold h4 p-4 bg-primary">Timeline Tips</div>
  29. <div class="card-body bg-white p-3">
  30. <ul class="pt-3">
  31. <li class="lead mb-4">You can mute or block accounts to prevent them from appearing in timelines.</li>
  32. <li class="lead mb-4">You can create <span class="font-weight-bold">Unlisted</span> posts that don't appear in public timelines.</li>
  33. </ul>
  34. </div>
  35. </div>
  36. @endsection