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.

51 lines
1.8 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. </head>
  13. <body>
  14. <div class="header">
  15. <a href="/" class="text">3/10</a>
  16. </div>
  17. <div class="row">
  18. <div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;">
  19. <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>
  20. <h2>Smartphones</h2>
  21. <div class="list">
  22. <p>
  23. {% for each in smartphone %}
  24. <p>{{ each }}</p>
  25. {% endfor %}
  26. </p>
  27. </div>
  28. <br>
  29. <h2>Tablets</h2>
  30. <div class="list">
  31. <p>
  32. {% for each in tablet %}
  33. <p>{{ each }}</p>
  34. {% endfor %}
  35. </p>
  36. </div>
  37. <br>
  38. <h2>Laptops</h2>
  39. <div class="list">
  40. <p>
  41. {% for each in laptop %}
  42. <p>{{ each }}</p>
  43. {% endfor %}
  44. </p>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="header" style="padding: 25px 10px;">
  49. <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>
  50. </div>
  51. </body>
  52. </html>