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.

66 lines
2.6 KiB

3 years ago
  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}Technical Incompetence - Home{% endblock %}
  3. {% block styles %}
  4. {{super()}}
  5. {# <link rel="icon" type="image/png" href="{{url_for('.static', filename='favicon.png')}}" /> #}
  6. <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
  7. {% if countdown is defined %}
  8. <link rel="stylesheet" href="{{url_for('.static', filename='clock.css')}}">
  9. {% endif %}
  10. <style>
  11. html {
  12. scrollbar-width: none;
  13. }
  14. </style>
  15. {% endblock %}
  16. {% block content %}
  17. <div class="container" style="margin-top: 15px">
  18. <h5>Apps</h5>
  19. <div class="row" style="margin-left: auto; margin-right: auto;">
  20. {% for app in apps %}
  21. <div class="col-xs-4" style="width: 90px;">
  22. <div class="card" onclick="goToLink('{{ app['link'] }}');" style="background-color: rgba(0,0,0,0); border: none;">
  23. <div class="card-body" style="padding: .5rem; text-align: center;">
  24. {% if app['image'] is defined %}
  25. <img src="{{url_for('.static', filename='images/' )}}{{ app['image'] }}" class="card-img" style="width: 64px !important; padding-bottom: 5px;">
  26. {% endif %}
  27. <p class="card-title" style="font-size: .75rem">{{ app['name'] }}</p>
  28. </div>
  29. </div>
  30. </div>
  31. {% endfor %}
  32. </div>
  33. <h5>Games</h5>
  34. <div class="row" style="margin-left: auto; margin-right: auto;">
  35. {% for app in games %}
  36. <div class="col-xs-4" style="width: 90px;">
  37. <div class="card" onclick="goToLink('{{ app['link'] }}');" style="background-color: rgba(0,0,0,0); border: none;">
  38. <div class="card-body" style="padding: .5rem; text-align: center;">
  39. {% if app['image'] is defined %}
  40. <img src="{{url_for('.static', filename='images/' )}}{{ app['image'] }}" class="card-img" style="width: 64px !important; padding-bottom: 5px;">
  41. {% endif %}
  42. <p class="card-title" style="font-size: .75rem">{{ app['name'] }}</p>
  43. </div>
  44. </div>
  45. </div>
  46. {% endfor %}
  47. </div>
  48. </div>
  49. {% endblock %}
  50. {% block scripts %}
  51. {{ super () }}
  52. <script>
  53. $( ".card" ).hover(
  54. function() {
  55. $(this).css('cursor', 'pointer');
  56. }, function() {
  57. });
  58. function goToLink(link) {
  59. window.top.location = link;
  60. }
  61. </script>
  62. {% endblock %}