| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Skia Fuzzer Details</title> | 4 <title>Skia Fuzzer Details</title> |
| 5 {{template "header.html" .}} | 5 {%template "header.html" .%} |
| 6 </head> | 6 </head> |
| 7 <body class="fullbleed vertical layout unresolved"> | 7 <body class="fullbleed vertical layout unresolved"> |
| 8 <style is="custom-style"> | 8 <style is="custom-style"> |
| 9 app-sk { | 9 app-sk { |
| 10 --app-sk-main: { | 10 --app-sk-main: { |
| 11 background-color: #FFFFFF; | 11 background-color: #FFFFFF; |
| 12 font-family: sans-serif; | 12 font-family: sans-serif; |
| 13 }; | 13 }; |
| 14 --app-sk-toolbar: { | 14 --app-sk-toolbar: { |
| 15 background-color: #8be1b8; | 15 background-color: #8be1b8; |
| 16 }; | 16 }; |
| 17 login-sk{ | 17 login-sk{ |
| 18 --login-sk-color: white; | 18 --login-sk-color: white; |
| 19 }; | 19 }; |
| 20 } | 20 } |
| 21 </style> | 21 </style> |
| 22 <app-sk class="fit" flex> | 22 <template is="dom-bind"> |
| 23 <img header id="logo" src="/res/img/skia_fuzz.png"> | 23 <app-sk class="fit" drawer_width="250px" flex> |
| 24 <fuzzer-status-sk rtoolbar></fuzzer-status-sk> | 24 <img header id="logo" src="/res/img/skia_fuzz.png"> |
| 25 <fuzzer-menu-sk navigation></fuzzer-menu-sk> | 25 <fuzzer-status-sk rtoolbar></fuzzer-status-sk> |
| 26 <fuzzer-menu-sk navigation> |
| 27 <fuzzer-filter-sk include="{{include}}" exclude="{{exclude}}"> |
| 28 </fuzzer-filter-sk> |
| 29 </fuzzer-menu-sk> |
| 26 | 30 |
| 27 <h2>Fuzz Details</h2> | 31 <h2>Fuzz Details</h2> |
| 28 | 32 |
| 29 <fuzzer-info-sk category="{{.Category}}"></fuzzer-info-sk> | 33 <fuzzer-info-sk |
| 30 </app-sk> | 34 category="{%.Category%}" |
| 35 include="[[include]]" |
| 36 exclude="[[exclude]]"> |
| 37 </fuzzer-info-sk> |
| 38 </app-sk> |
| 39 </template> |
| 31 | 40 |
| 32 </body> | 41 </body> |
| 33 </html> | 42 </html> |
| OLD | NEW |