11 lines
268 B
Go
11 lines
268 B
Go
|
package widget
|
||
|
|
||
|
func commonArgs() map[string]string {
|
||
|
return map[string]string{
|
||
|
"{$before_widget}": `<aside id="%s" class="widget widget_%s">`,
|
||
|
"{$after_widget}": "</aside>",
|
||
|
"{$before_title}": `<h2 class="widget-title">`,
|
||
|
"{$after_title}": "</h2>",
|
||
|
}
|
||
|
}
|