The crux.sexy website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

56 lines
1.5 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>
  16. <a class="changelog-banner" href="/">
  17. <div class="changelog-text">
  18. back
  19. </div>
  20. </a>
  21. <div class="flex-container">
  22. <a href="#stroll" class="game-button-small" id="game-button-stroll">
  23. <img class="game-logo" src="/images/stroll-transparent.png">
  24. </a>
  25. <a href="#feast" class="game-button-small" id="game-button-feast">
  26. <img class="game-logo" src="/images/feast-transparent.png">
  27. </a>
  28. <a href="#gorge" class="game-button-small" id="game-button-gorge">
  29. <img class="game-logo" src="/images/gorge-transparent.png">
  30. </a>
  31. <a href="#satiate" class="game-button-small" id="game-button-satiate">
  32. <img class="game-logo" src="/images/satiate-transparent.png">
  33. </a>
  34. </div>
  35. <div class="changelog-fade">
  36. </div>
  37. {% for game in games %}
  38. <div class="changelogs" id="{{game.name}}">
  39. {% for entry in game.versions %}
  40. <div class="changelog">
  41. <div class="version">{{entry.version}}</div>
  42. <br>
  43. {{entry.changes|safe}}
  44. </div>
  45. {% endfor %}
  46. </div>
  47. {% endfor %}
  48. </body>
  49. </html>