The crux.sexy website
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

71 lines
2.2 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>crux.sexy</title>
  5. <link rel="stylesheet" type="text/css" href="changelog.css">
  6. <script>
  7. window.onload = () => {
  8. window.scrollTo(0, -500);
  9. window.addEventListener("hashchange", function scroll() {
  10. window.scrollTo(0, -500);
  11. });
  12. };
  13. </script>
  14. </head>
  15. <body class="nightly">
  16. <a class="changelog-banner" href="/">
  17. <div class="changelog-text">
  18. back
  19. </div>
  20. </a>
  21. <a class="switcher" href="/changelog">
  22. <div class="switcher-text">
  23. stable<br>
  24. changelogs
  25. </div>
  26. </a>
  27. <div class="flex-container">
  28. <a href="#stroll" class="game-button-small" id="game-button-stroll">
  29. <img class="game-logo" src="/images/stroll-transparent.png">
  30. </a>
  31. <a href="#feast" class="game-button-small" id="game-button-feast">
  32. <img class="game-logo" src="/images/feast-transparent.png">
  33. </a>
  34. <a href="#gorge" class="game-button-small" id="game-button-gorge">
  35. <img class="game-logo" src="/images/gorge-transparent.png">
  36. </a>
  37. <a href="#satiate" class="game-button-small" id="game-button-satiate">
  38. <img class="game-logo" src="/images/satiate-transparent.png">
  39. </a>
  40. <a href="#macrovision" class="game-button-small" id="game-button-macrovision">
  41. <img class="game-logo" src="/images/macrovision-transparent.png">
  42. </a>
  43. </div>
  44. <div class="changelog-fade-nightly">
  45. </div>
  46. {% for game in games %}
  47. <div class="changelogs" id="{{game.name}}">
  48. {% set ns = namespace(last="") %}
  49. {% for entry in game.commits %}
  50. <div class="changelog">
  51. {% if ns.last != entry.date %}
  52. {% set ns.last = entry.date %}
  53. <div class="commit-date">{{entry.date}}</div>
  54. <br>
  55. {% endif %}
  56. <div class="commit-subject">{{entry.subject|safe}}</div>
  57. <br>
  58. <div class="commit-body">{{entry.body|safe}}</div>
  59. </div>
  60. {% endfor %}
  61. </div>
  62. {% endfor %}
  63. </body>
  64. </html>