Child: [0e7d7f] (diff)

Download this file

barediff.html    15 lines (14 with data), 486 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{% if a.has_image_view and b.has_image_view %}
<img src="{{a.url()}}?format=raw"
alt="{{h.text.truncate(a._commit._id, 10)}}"
title="{{h.text.truncate(a._commit._id, 10)}}"/>
<img src="{{b.url()}}?format=raw"
alt="{{h.text.truncate(b._commit._id, 10)}}"
title="{{h.text.truncate(b._commit._id, 10)}}"/>
{% else %}
{% if session.diformat == 'sidebyside' %}
{{diff|safe}}
{% else %}
{{g.highlight(diff, lexer='diff')}}
{% endif%}
{% endif %}