mirror of
https://github.com/wallabag/ios-app.git
synced 2026-05-19 15:10:34 +00:00
29 lines
915 B
HTML
29 lines
915 B
HTML
<html>
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="ratatouille.css" media="all" id="extra-theme">
|
|
<link rel="stylesheet" href="main.css" media="all" id="main-theme">
|
|
<link rel="stylesheet" href="%@" media="all" id="justify-theme">
|
|
<script src="Readability.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<div id="content" class="w600p center">
|
|
<div id="article">
|
|
<article> %@</article>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var imgs = document.getElementsByTagName("img");
|
|
for (var i = 0; i < imgs.length; i++) {
|
|
imgs[i].removeAttribute("srcset");
|
|
}
|
|
|
|
var article = new Readability(document).parse();
|
|
document.getElementById("article").innerHTML = article.content;
|
|
</script>
|
|
</body>
|
|
</html>
|