aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/widget.tpl
blob: 3fb3b1200073f10419ab55544348e2a106c31308 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{* Generic template for widgets.
  *
  * To use this template, pass the `$this` object reference of the widget,
  * and implement the `title()` and `contents()` functions as public methods
  * on the widget class.
  *}}
<div class="widget">
	<h3>{{$widget->title()}}</h3>
	{{$widget->contents()}}
</div>