LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>{{ title }} - ABP Test Pages</title> | 4 <title>{{ title }} - ABP Test Pages</title> |
5 <link rel="stylesheet" href="/css/testpages.css"> | 5 <link rel="stylesheet" href="/css/testpages.css"> |
6 <link rel="icon" type="image/png" sizes="32x32" href="/images/abp-32.png"> | 6 <link rel="icon" type="image/png" sizes="32x32" href="/images/abp-32.png"> |
7 <meta name="viewport" content="width=device-width, initial-scale=1"> | 7 <meta name="viewport" content="width=device-width, initial-scale=1"> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 <? include header ?> | 10 <? include header ?> |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 <li><a href="{{link[1]}}">{{link[0]}}</a></li> | 70 <li><a href="{{link[1]}}">{{link[0]}}</a></li> |
71 {% endfor %} | 71 {% endfor %} |
72 </ul> | 72 </ul> |
73 </section> | 73 </section> |
74 {% endif %} | 74 {% endif %} |
75 | 75 |
76 </div> | 76 </div> |
77 | 77 |
78 <? include footer ?> | 78 <? include footer ?> |
79 | 79 |
| 80 <script> |
| 81 function pagelog(message, ) { |
| 82 var log = document.getElementById("testcase-output"); |
| 83 log.innerText = log.innerText + message + "\n"; |
| 84 console.log(message); |
| 85 } |
| 86 </script> |
80 </body> | 87 </body> |
81 </html> | 88 </html> |
LEFT | RIGHT |