Skip to content

Commit

Permalink
Break out tags and links stats from the raw css header to a ul.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmrs committed Nov 26, 2014
1 parent a72fd95 commit a67c099
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions views/stats.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -201,19 +201,24 @@
<section id="raw-css" class="mb4 print-hide">
<h1 class="h2">
Raw CSS
</h1>
{{#if source }}
<span class="h5">
<ul class="list-reset">
{{#if source.styles }}
{{ source.styles.length }} style tags
<li class="h5">
{{ source.styles.length }} style tags
</li>
{{/if}}
{{#if source.links }}
{{ source.links.length }} stylesheet links
<li>
{{ source.links.length }} stylesheet links
</li>
{{/if}}
</span>
</ul>
{{/if}}
</h1>
<pre class="p2 rounded" style="max-height:50vh;overflow:auto">{{highlight cssPretty }}</pre>
{{#if source.links }}
<h2 class="h2">Links to css files scraped</h2>
<p class="h5">
{{#each source.links }}
<a href="{{ url }}" class="break-word">
Expand Down

0 comments on commit a67c099

Please sign in to comment.