discover.blade.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. @extends('site.help.partial.template', ['breadcrumb'=>'Discover'])
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Discover</h3>
  5. </div>
  6. <hr>
  7. <p class="lead">Discover new posts, people and topics.</p>
  8. <div class="py-4">
  9. <p class="font-weight-bold h5 pb-3">How to use Discover</p>
  10. <ul>
  11. <li class="mb-3 ">Click the <i class="far fa-compass fa-sm"></i> icon.</li>
  12. <li class="mb-3 ">View the latest posts.</li>
  13. </ul>
  14. </div>
  15. <div class="py-4">
  16. <p class="font-weight-bold h5 pb-3">Discover Categories <span class="badge badge-success">NEW</span></p>
  17. <p>Discover Categories are a new feature that may not be supported on every Pixelfed instance.</p>
  18. <ul>
  19. <li class="mb-3 ">Click the <i class="far fa-compass fa-sm"></i> icon.</li>
  20. <li class="mb-3 ">On the discover page, you will see a list of Category cards that links to each Discover Category.</li>
  21. </ul>
  22. </div>
  23. <div class="card bg-primary border-primary" style="box-shadow: none !important;border: 3px solid #08d!important;">
  24. <div class="card-header text-light font-weight-bold h4 p-4 bg-primary">Discover Tips</div>
  25. <div class="card-body bg-white p-3">
  26. <ul class="pt-3">
  27. <li class="lead mb-4">To make your posts more discoverable, add hashtags to your posts.</li>
  28. <li class="lead mb-4">Any public posts that contain a hashtag may be included in discover pages.</li>
  29. </ul>
  30. </div>
  31. </div>
  32. @endsection