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 | <link rel="shortcut icon" href="favicon.ico" />
|
10 |
|
11 | <title>Simple Smartdown Gallery Site</title>
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 | <link
|
21 | rel=stylesheet
|
22 | href="fonts.css">
|
23 | <link
|
24 | rel=stylesheet
|
25 | href="smartdown.css">
|
26 | <script
|
27 | src="smartdown.js">
|
28 | </script>
|
29 | </head>
|
30 |
|
31 | <body
|
32 | id="smartdown-outer-container"
|
33 | class="smartdown-outer-container">
|
34 | <div
|
35 | class="container-fluid">
|
36 | <div
|
37 | class="smartdown-container"
|
38 | id="smartdown-output">
|
39 | </div>
|
40 | </div>
|
41 |
|
42 | <script src="calc_handlers.js"></script>
|
43 |
|
44 | <script src="starter.js"></script>
|
45 | <script>
|
46 |
|
47 | window.smartdownBaseURL = '';
|
48 |
|
49 |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 |
|
55 |
|
56 |
|
57 | window.smartdownRawPrefix = window.location.origin + window.location.pathname + 'gallery/';
|
58 |
|
59 |
|
60 | window.smartdownStarter();
|
61 | </script>
|
62 |
|
63 | </body>
|
64 | </html>
|
65 |
|