ce4aefe828
Moved host_thumb macro into shared avatar template file. Made condition of lazy loading a parameter.
9 lines
508 B
HTML
9 lines
508 B
HTML
<!--% MACRO get_avatar_src(host_id) BLOCK %-->
|
|
<!--% TRY %-->
|
|
<!--% USE File ("./public_html/images/hosts/${host_id}.png") %-->hosts/<!--% File.name %-->
|
|
<!--% CATCH File %-->hpr_logo.png<!--% END %-->
|
|
<!--% END %-->
|
|
<!--% MACRO host_thumb(avatar, host_name, host_cnt, min_cnt) BLOCK %-->
|
|
<img src="<!--% absolute_path(baseurl) %-->images/<!--% avatar %-->" height="80" width="80" alt="Thumbnail of <!--% host_name | html %-->" <!--% IF host_cnt > min_cnt %-->loading="lazy"<!--% END %--> />
|
|
<!--% END %-->
|