sitespeed.io/lib/plugins/html/templates/errors.pug

20 lines
385 B
Plaintext

extends ./layout.pug
include _tableMixins
mixin row(errors)
each error, url in errors
tr
td
a(href=url)= url
td
ul
each pageerrors, tool in error
each myerror in pageerrors
li #{myerror}
b (#{tool})
block content
h2 Errors
table
+rowHeading(['url', 'errors'])
+row(errors)