The version of vichan running on lainchan.org
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

77 řádky
3.0KB

  1. {% filter remove_whitespace %}
  2. <!DOCTYPE html>
  3. <html style="height:100vh; width:100%;">
  4. <head>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <title>{{ settings.title }}</title>
  7. <link rel="shortcut icon" href="/favicon.png">
  8. <link rel="stylesheet" media="screen" href="/stylesheets/style.css"/>
  9. <link rel="stylesheet" media="screen" href="/stylesheets/cyberpunk.css"/>
  10. <link rel="stylesheet" href="/stylesheets/font-awesome/css/font-awesome.min.css">
  11. <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
  12. <script type="text/javascript">
  13. $(document).ready(function(){
  14. check_status();
  15. setInterval(check_status, 15000);
  16. });
  17. function check_status(){
  18. $.get("{{ settings.radiostatus }}", function(data){
  19. var el = $( '<div></div>' );
  20. el.html(data);
  21. var sd = el.find(".streamdata");
  22. $(".nowplaying").text("Now playing: " + sd[16].textContent);
  23. $(".currentlisteners").text("Current listeners: " + sd[13].textContent); });
  24. }
  25. </script>
  26. </head>
  27. <body style=" background: url(/bg.php) no-repeat center center fixed;
  28. -webkit-background-size: cover;
  29. -moz-background-size: cover;
  30. -o-background-size: cover;
  31. background-size: cover;
  32. ">
  33. <div class="bar top">
  34. {{ boardlist.top }}
  35. </div>
  36. {% if config.url_banner %}<img class="board_image" src="{{ config.url_banner }}" {% if config.banner_width or config.banner_height %}style="{% if config.banner_width %}width:{{ config.banner_width }}px{% endif %};{% if config.banner_width %}height:{{ config.banner_height }}px{% endif %}" {% endif %}alt="" />{% endif %}
  37. <header>
  38. <h1>{{ settings.title }}</h1>
  39. <div class="subtitle">{{ settings.subtitle }}</div>
  40. </header>
  41. <img alt="mascot" src="static/lain_is_cute_datass_small.png" style="display: block; margin: 0 auto;"/>
  42. <div class="ban" style="margin-top: 0px!important; background-color: black; text-align: left!important;">
  43. <h2>WELCOME TO CYBERIA</h2>
  44. <p>Welcome to lainchan's radio stream.
  45. </p>
  46. <noscript><p>Radio statistics will be not be updated without JavaScript, please visit https://lainchan.org/radio_assets/status.xsl to see them directly.</p></noscript>
  47. <p class="nowplaying"> Now playing:
  48. </p>
  49. <p class="currentlisteners"> Current listeners:
  50. </p>
  51. <ul>
  52. <li><a href="https://lainchan.org/static/lain.ogg.m3u">Vorbis M3U Playlist</a></li>
  53. <li><a href="https://lainchan.org/static/lain.mp3.m3u">MP3 M3U Playlist</a></li>
  54. XSPF considered harmful.
  55. </ul>
  56. <audio controls preload="none" style="margin: 0 5% 20px 5%; width: 90%; box-shadow: 0px 0px 5px black;">
  57. <source src="https://lainchan.org/radio_assets/lain.ogg" type="audio/ogg">
  58. <source src="https://lainchan.org/radio_assets/lain" type="audio/mpeg">
  59. <em>Your browser lacks support for OGG Vorbis files. Please open the M3U file or XSPF file in a multimedia player.</em>
  60. </audio>
  61. </div>
  62. </body>
  63. </html>
  64. {% endfilter %}