cb6097aa41d091f47d42e53b1a3a88a5408837e0
[catagits/Gitalist.git] / root / fragment / ref / blob.tt2
1 [%- IF is_image -%]
2 <div class='blob'><img src="[% c.uri_for_action('/ref/raw', c.req.captures, filename) %]" title="[% filename %]"></div>
3 [%- ELSIF is_binary -%]
4 <div class='blob'>This is a binary file which won't render natively on the web, but you can get it here all the same: <a href="[% c.uri_for_action('/ref/raw', c.req.captures, filename) %]" title="[% filename %]">[% filename %]</a></div>
5 [%- ELSE -%]
6 [%- INCLUDE inc/syntax_highlight_css.tt2 -%]
7 [%- USE UTF8Decode -%]
8 <pre class='blob'>[% IF mangled; blob; ELSE; blob | utf8_decode | html; END; %]</pre>
9 [%- END -%]