fix(tech/home): use != image_tag (raw, not HTML-escaped) in haml
haml's '=' escapes the output, so '= image_tag …' rendered the literal
'<img src=…>' text on the page instead of an actual <img> tag. Use '!='
to emit unescaped HTML — matches the surrounding '!= stylesheet_link_tag'
pattern in the same template.