github.com/manicqin/nomad@v0.9.5/ui/app/templates/components/image-file.hbs (about)

     1  <a data-test-image-link href={{src}} target="_blank" rel="noopener noreferrer" class="image-file-image">
     2    <img data-test-image src={{src}} alt={{or alt fileName}} title={{fileName}} onload={{action updateImageMeta}} />
     3  </a>
     4  <figcaption class="image-file-caption">
     5    <span class="image-file-caption-primary">
     6      <strong data-test-file-name>{{fileName}}</strong>
     7      {{#if (and width height)}}
     8        <span data-test-file-stats>({{width}}px &times; {{height}}px{{#if size}}, {{format-bytes size}}{{/if}})</span>
     9      {{/if}}
    10    </span>
    11  </figcaption>