15 changed files with 1174 additions and 106 deletions
-
328Web_Dashboard/app.py
-
222Web_Dashboard/static/styles.css
-
52Web_Dashboard/templates/eight.html
-
52Web_Dashboard/templates/five.html
-
52Web_Dashboard/templates/four.html
-
97Web_Dashboard/templates/index.html
-
7Web_Dashboard/templates/most-repairable.html
-
52Web_Dashboard/templates/nine.html
-
52Web_Dashboard/templates/one.html
-
52Web_Dashboard/templates/seven.html
-
52Web_Dashboard/templates/six.html
-
52Web_Dashboard/templates/ten.html
-
52Web_Dashboard/templates/three.html
-
52Web_Dashboard/templates/two.html
-
104Web_Dashboard/templates/worst-offenders.html
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>8 out of 10 iFixit Repairability Score</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">8/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #82C72E;">Devices that scored a 8 out of 10 on the iFixit Repairability Score. Pretty great!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>5 out of 10 iFixit Repairability Score</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">5/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #FFC012;">Devices that scored a 5 out of 10 on the iFixit Repairability Score. Pretty bad!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>4 out of 10 iFixit Repairability Score</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">4/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #FFA01B;">Devices that scored a 4 out of 10 on the iFixit Repairability Score. Pretty bad!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>9 out of 10 iFixit Repairability Score</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">9/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #58CA37;">Devices that scored a 9 out of 10 on the iFixit Repairability Score. Awesome!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>1 out of 10 iFixit Repairability Score</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" style="align-items: center;"> |
||||
|
<a href="/" class="text">1/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #FF4136;">Devices that scored a 1 out of 10 on the iFixit Repairability Score. Ouch!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>7 out of 10 iFixit Repairability Score</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">7/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #ABC524;">Devices that scored a 7 out of 10 on the iFixit Repairability Score. Starting to look up.</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>6 out of 10 iFixit Repairability Score</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">6/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #D5C21B;">Devices that scored a 6 out of 10 on the iFixit Repairability Score. Starting to look up.</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>10 out of 10 iFixit Repairability Score</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">10/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #2ECC40;">Devices that scored a 10 out of 10 on the iFixit Repairability Score. Amazing!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="header" style="padding: 25px 15px;"> |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>3 out of 10 iFixit Repairability Score</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">3/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<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> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,52 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="en"> |
||||
|
<head> |
||||
|
<title>2 out of 10 iFixit Repairability Score</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">2/10</a> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="column3" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin;"> |
||||
|
<p style="text-align:center; font-size: 25px; color: #FF612D;">Devices that scored a 2 out of 10 on the iFixit Repairability Score. Ouch!</p> |
||||
|
<h2>Smartphones</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in smartphone %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Tablets</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in tablet %} |
||||
|
<p>{{ each }}</p> |
||||
|
{% endfor %} |
||||
|
</p> |
||||
|
</div> |
||||
|
<br> |
||||
|
<h2>Laptops</h2> |
||||
|
<div class="list"> |
||||
|
<p> |
||||
|
{% for each in laptop %} |
||||
|
<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> |
||||
@ -0,0 +1,104 @@ |
|||||
|
<!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> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue