Get path of picture asset from package?

I create admint-lte package, and add picture/font asset

// Image
    api.addAssets([
        'lib/img/avatar.png',
        'lib/img/avatar2.png',
        'lib/img/avatar3.png',
        'lib/img/avatar04.png',
        'lib/img/avatar5.png',
        'lib/img/boxed-bg.jpg',
        'lib/img/boxed-bg.png',
        'lib/img/default-50x50.gif',
        'lib/img/icons.png',
        'lib/img/photo1.png',

And then I would like to use picture in Template file

<img src="/lib/img/user2-160x160.jpg" class="img-circle" alt="User Image">

Please help me.

If your package name is theara:admin-lte, it should be like this:

<img src="/packages/theara_admin-lte/lib/img/user2-160x160.jpg" class="img-circle" alt="User Image">

Thanks, work fine :smile: