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

<!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">
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.yeetpc.com/matomo/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '2']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</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 &#10084;&#65039; by <a class="none" href="https://www.yeetpc.com/about.html" target="_blank" rel="noopener">Ravi Shah</a></p>
</div>
</body>
</html>