1<?php
2
3echo elgg_view_page(elgg_echo('tagcloud:site_cloud'), [
4	'content' => elgg_view_tagcloud([
5		'threshold' => 0,
6		'limit' => 100,
7		'tag_name' => 'tags',
8	]),
9]);
10