| OLD | NEW | 
|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <html> | 2 <html> | 
| 3   <head> | 3   <head> | 
| 4     <title>{{ title }}</title> | 4     <title>{{ title }}</title> | 
| 5         <link rel="stylesheet" href="/css/testpages.css"> | 5         <link rel="stylesheet" href="/css/testpages.css"> | 
| 6   </head> | 6   </head> | 
| 7   <body> | 7   <body> | 
| 8 | 8 | 
| 9     <? include header ?> | 9     <? include header ?> | 
| 10 | 10 | 
| 11         <section class="abp-container abp-breadcrumb"> | 11         <section class="abp-container abp-breadcrumb"> | 
| 12 »         <a href="/">Home</a> | 12 »         <a href="/" target="_top">Home</a> | 
| 13 »         > <a href="testcases">Test cases</a> | 13 »         > <a href="testcases" target="_top">Test cases</a> | 
| 14       {{ breadcrumb|safe }} | 14       {{ breadcrumb|safe }} | 
| 15         </section> | 15         </section> | 
| 16 | 16 | 
| 17         <section class="abp-container"> | 17         <section class="abp-container"> | 
| 18           <h2>Test case - {{ testcaseid }}</h2> | 18           <h2>Test case - {{ testcaseid }}</h2> | 
| 19       {{ body|safe }} | 19       {{ body|safe }} | 
| 20         </section> | 20         </section> | 
| 21 | 21 | 
| 22         <? include footer ?> | 22         <? include footer ?> | 
| 23 | 23 | 
| 24   </body> | 24   </body> | 
| 25 </html> | 25 </html> | 
| OLD | NEW | 
|---|