1 | <!DOCTYPE html>
|
2 | <html lang="en">
|
3 | <head>
|
4 | <meta charset="utf-8">
|
5 | <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1">
|
6 | <meta name="apple-mobile-web-app-capable" content="yes">
|
7 | <meta name="apple-mobile-web-app-status-bar-style" content="black">
|
8 |
|
9 | <title>Simple Smartdown Viewer</title>
|
10 |
|
11 | <link
|
12 | rel=stylesheet
|
13 | href="https://smartdown.site/lib/smartdown.css">
|
14 | <script
|
15 | src="https://smartdown.site/lib/smartdown.js">
|
16 | </script>
|
17 |
|
18 | </head>
|
19 |
|
20 | <body
|
21 | style="margin:0;padding:0;background:white;">
|
22 | <div
|
23 | class="container-fluid"
|
24 | style="margin:0;padding:5px;">
|
25 | <div
|
26 | class="smartdown-container"
|
27 | id="smartdown-output">
|
28 | </div>
|
29 | </div>
|
30 |
|
31 | <script src="https://smartdown.site/lib/starter.js"></script>
|
32 | <script>
|
33 | window.smartdownBaseURL = 'https://smartdown.site/';
|
34 | window.smartdownDefaultHome = 'YouTube';
|
35 | window.smartdownStarter();
|
36 | </script>
|
37 | </body>
|
38 | </html>
|