This commit is contained in:
Heydon Pickering 2017-12-02 12:19:05 +00:00
commit dda006483f
1 changed files with 6 additions and 9 deletions

View File

@ -11,19 +11,16 @@
</th> </th>
{{ range $tested }} {{ range $tested }}
<td> <td>
{{ $browser := findRE "^[a-zA-Z ]+" . }}
{{ $browser := index $browser 0 }}
{{ $version := findRE "[0-9]+$" . }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }} {{ index $version 0 }}</strong></span>
{{ if in . "+" }} {{ if in . "+" }}
{{ $parts := split . "+" }} {{ $parts := split . "+" }}
{{ $browser := index $parts 0 }}
{{ $additional := index $parts 1 }} {{ $additional := index $parts 1 }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }}</strong></span>
<span class="additional">with <strong>{{ $additional }}</strong></span> <span class="additional">with <strong>{{ $additional }}</strong></span>
{{ else }}
{{ $browser := . }}
{{ $slug := replace $browser " " "-" | lower }}
<img src="{{ (printf "images/browser-%s" $slug) | absURL }}.svg" alt="">
<span><strong>{{ $browser }}</strong></span>
{{ end }} {{ end }}
</td> </td>
{{ end }} {{ end }}