side_who_to_follow.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. $appSettings = parse_ini_file('config/config.ini',true);
  3. echo "<span id='who-to-follow-provider' style='display:none'>".$appSettings["App"]["who_to_follow_provider"]."</span>";
  4. ?>
  5. <div class="side_widget follow_opt_in side_widgets_footer">
  6. <h2><?=_('Who to follow')?></h2>
  7. <?=_('Halcyon needs to connect to an external server to get a list of users which have similar interests as you. If you want to use this feature, please opt-in.')?>
  8. <center><br/>
  9. <button class="halcyon_button" id="enable_follow">
  10. <span><?=_('Enable who to follow')?></span>
  11. </button>
  12. </center>
  13. </div>
  14. <div class="side_widget follow_loading" style="display:none;color:#AAB8C2">
  15. <h2><?=_('Who to follow')?></h2>
  16. <div style="height:100px"></div>
  17. <center>
  18. <span class="fa-stack fa-2x">
  19. <i class="fa fa-circle-o-notch fa-spin" id="follow_icon"></i>
  20. </span>
  21. </center>
  22. <div style="height:100px"></div>
  23. </div>
  24. <div class="side_widget with_button what_to_follow" style="display:none">
  25. <div class="form_title">
  26. <h2><?=_('Who to follow')?></h2>
  27. <a href="/whotofollow" class="headerbtn"><?=_('MORE')?></a>
  28. </div>
  29. <ul class="account_list">
  30. <li class="account_box what_to_follow_0">
  31. <div class="icon_box">
  32. <img src="">
  33. </div>
  34. <div class="label_box">
  35. <a href="">
  36. <h3>
  37. <span class="dn"></span>
  38. <span class="un"></span>
  39. </h3>
  40. </a>
  41. <button class="follow_button" mid="" data="">
  42. <i class="fa fa-fw fa-user-plus"></i>
  43. <span><?=_('Follow')?></span>
  44. </button>
  45. </div>
  46. </li>
  47. <li class="account_box what_to_follow_1">
  48. <div class="icon_box">
  49. <img src="">
  50. </div>
  51. <div class="label_box">
  52. <a href="">
  53. <h3>
  54. <span class="dn"></span>
  55. <span class="un"></span>
  56. </h3>
  57. </a>
  58. <button class="follow_button" mid="" data="">
  59. <i class="fa fa-fw fa-user-plus"></i>
  60. <span><?=_('Follow')?></span>
  61. </button>
  62. </div>
  63. </li>
  64. <li class="account_box what_to_follow_2">
  65. <div class="icon_box">
  66. <img src="">
  67. </div>
  68. <div class="label_box">
  69. <a href="">
  70. <h3>
  71. <span class="dn"></span>
  72. <span class="un"></span>
  73. </h3>
  74. </a>
  75. <button class="follow_button" mid="" data="">
  76. <i class="fa fa-fw fa-user-plus"></i>
  77. <span><?=_('Follow')?></span>
  78. </button>
  79. </div>
  80. </li>
  81. </ul>
  82. </div>