Pulls repairability scores for various devices from iFixit, which are then displayed on a website in a few categories.
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.

67 lines
2.4 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>3 out of 10 iFixit Repairability Score</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="static/bootstrap.min.css" rel="stylesheet" media="screen">
  7. <link href="static/styles.css" rel="stylesheet" media="screen">
  8. <link rel="manifest" href="static/site.webmanifest">
  9. <link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png">
  10. <link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png">
  11. <link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png">
  12. <!-- Matomo -->
  13. <script type="text/javascript">
  14. var _paq = window._paq = window._paq || [];
  15. /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  16. _paq.push(['trackPageView']);
  17. _paq.push(['enableLinkTracking']);
  18. (function() {
  19. var u="//analytics.yeetpc.com/matomo/";
  20. _paq.push(['setTrackerUrl', u+'matomo.php']);
  21. _paq.push(['setSiteId', '2']);
  22. var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  23. g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
  24. })();
  25. </script>
  26. <!-- End Matomo Code -->
  27. </head>
  28. <body>
  29. <div class="header">
  30. <a href="/" class="text">3/10</a>
  31. </div>
  32. <div class="row">
  33. <div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;">
  34. <p style="text-align:center; font-size: 25px; color: #FF8124;">Devices that scored a 3 out of 10 on the iFixit Repairability Score. Ouch!</p>
  35. <h2>Smartphones</h2>
  36. <div class="list">
  37. <p>
  38. {% for each in smartphone %}
  39. <p>{{ each }}</p>
  40. {% endfor %}
  41. </p>
  42. </div>
  43. <br>
  44. <h2>Tablets</h2>
  45. <div class="list">
  46. <p>
  47. {% for each in tablet %}
  48. <p>{{ each }}</p>
  49. {% endfor %}
  50. </p>
  51. </div>
  52. <br>
  53. <h2>Laptops</h2>
  54. <div class="list">
  55. <p>
  56. {% for each in laptop %}
  57. <p>{{ each }}</p>
  58. {% endfor %}
  59. </p>
  60. </div>
  61. </div>
  62. </div>
  63. <div class="header" style="padding: 25px 10px;">
  64. <p style="text-align:center;">Made with &#10084;&#65039; by <a class="none" href="https://www.yeetpc.com/about.html" target="_blank" rel="noopener">Ravi Shah</a></p>
  65. </div>
  66. </body>
  67. </html>