OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 {{+partials.header_head}} | 4 {{+partials.header_head}} |
5 <title>{{article.title}} - Google Chrome</title> | 5 <title>{{article.title}} - Google Chrome</title> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 {{+partials.header_body}} | 8 {{+partials.header_body}} |
9 <div id="gc-container"> | 9 <div id="gc-container"> |
10 {{+partials.apps_sidenav}} | 10 {{+partials.apps_sidenav}} |
11 <div id="gc-pagecontent"> | 11 <div id="gc-pagecontent"> |
| 12 <h1 class="page_title">{{article.title}}</h1> |
12 {{?article.toc}} | 13 {{?article.toc}} |
13 {{+partials.table_of_contents toc:article.toc}} | 14 {{+partials.table_of_contents toc:article.toc}} |
14 {{/article.toc}} | 15 {{/article.toc}} |
15 {{- This may contain <pre> tags so it is not indented -}} | 16 {{- This may contain <pre> tags so it is not indented -}} |
16 {{+article.intro}} | 17 {{+article.intro}} |
17 </div> | 18 </div> |
18 </div> | 19 </div> |
19 </body> | 20 </body> |
20 {{+partials.footer is_apps:true}} | 21 {{+partials.footer is_apps:true}} |
21 </html> | 22 </html> |
OLD | NEW |