Image that links to a dashboard?

Hi - without re-inventing the wheel, what is the easiest way to have HABPanel display a static image that acts as a hyperlink to a specific dashboard.

Perhaps the option is suitable for you, how do I use this? This code is inserted into the template.
If you do not need to display the value of any element, then I think you can replace the dummy with something suitable for you.

<a href="#/view/battery" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;"
   ng-init='model={ "name": "Battery", "item": "gMinLevelBattery", "iconset": "eclipse-smarthome-classic", "icon": "battery", "icon_size": 64 }'>

	<widget-dummy ng-model="model"></widget-dummy>

</a>

image

UPDATE:

<a href="#/view/battery" style="position: absolute; left: 0; top: 0; width: 100%; height: 100%;"
   ng-init='model={ "name": "", "image_source": "static","url": "/static/battery.jpg","intervaltype": "seconds","background": "rgb(0, 0, 0)"}'>

	<widget-image ng-model="model"></widget-image>

</a>

image

PS
Pay attention to the standard widget - switch. The image there can only be an icon (if I remember correctly) from the proposed icon sets.

Awesome! Thanks so much!