The affinity tool is not a "traditional" widget. But it is nevertheless a widget. It just makes fewer page layout decisions which are hard-coded. If you want to shrink it down and put it on the sidebar in your theme, go for it.

This commit is contained in:
friendica
2013-12-11 19:43:41 -08:00
parent 2f46bacded
commit b4e1e8a4a4
4 changed files with 34 additions and 27 deletions

View File

@@ -1883,7 +1883,8 @@ function construct_page(&$a) {
$v = str_replace('$nav',$a->page['nav'],$v);
}
if(strpos($v,'$content') !== false) {
$v = str_replace('$content',$a->page['section'],$v);
$v = str_replace('$content',$a->page['content'],$v);
}
$a->page[substr($k,7)] = $v;