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.
|
|
<!DOCTYPE html><html lang="en"> <head> <title>Worst Offenders</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="static/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="static/styles.css" rel="stylesheet" media="screen"> <link rel="manifest" href="static/site.webmanifest"> <link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png"> </head> <body> <div class="header"> <a href="/" class="text">Worst Offenders</a> </div> <div class="row"> <div class="column" style="background-color:#081c3d; overflow: auto; scrollbar-width: thin;"> <h2>Smartphones</h2> <h3 style="color: #FF4136;">1/10</h3> <div class="list"> <p> {% for each in smartphone %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FF8024;">2/10</h3> <div class="list"> <p> {% for each in smartphone_2 %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FFC012;">3/10</h3> <div class="list"> <p> {% for each in smartphone_3 %} <p>{{ each }}</p> {% endfor %} </p> </div> </div> <div class="column" style="background-color:#06152e; overflow: auto; scrollbar-width: thin;"> <h2>Tablets</h2> <h3 style="color: #FF4136;">1/10</h3> <div class="list"> <p> {% for each in tablet %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FF8024;">2/10</h3> <div class="list"> <p> {% for each in tablet_2 %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FFC012;">3/10</h3> <div class="list"> <p> {% for each in tablet_3 %} <p>{{ each }}</p> {% endfor %} </p> </div> </div> <div class="column" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> <h2>Laptops</h2> <h3 style="color: #FF4136;">1/10</h3> <div class="list"> <p> {% for each in laptop %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FF8024;">2/10</h3> <div class="list"> <p> {% for each in laptop_2 %} <p>{{ each }}</p> {% endfor %} </p> </div> <h3 style="color: #FFC012;">3/10</h3> <div class="list"> <p> {% for each in laptop_3 %} <p>{{ each }}</p> {% endfor %} </p> </div> </div> </div> <div class="header" style="padding: 25px 10px;"> <p style="text-align:center;">Made with ❤️ by <a class="none" href="https://www.yeetpc.com/about.html" target="_blank" rel="noopener">Ravi Shah</a></p> </div> </body></html>
|