NetNewsWire/iOS/Resources/page.html

23 lines
525 B
HTML
Raw Normal View History

<html>
2020-01-30 13:18:56 +01:00
<head>
<title>[[title]]</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2020-01-30 13:18:56 +01:00
<style>
[[style]]
2020-01-30 13:18:56 +01:00
</style>
<script src="main.js"></script>
<script src="main_ios.js"></script>
<script src="newsfoot.js" async="async"></script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(event) {
window.scrollTo(0, [[windowScrollY]]);
processPage();
})
</script>
<base href="[[baseURL]]">
2020-01-30 13:18:56 +01:00
</head>
<body>
[[body]]
2020-01-30 13:18:56 +01:00
</body>
</html>