diff options
Diffstat (limited to 'views/default/n1_theme/landing.php')
-rw-r--r-- | views/default/n1_theme/landing.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/views/default/n1_theme/landing.php b/views/default/n1_theme/landing.php new file mode 100644 index 0000000..83132a9 --- /dev/null +++ b/views/default/n1_theme/landing.php @@ -0,0 +1,13 @@ +<?php + +$title = elgg_echo('n1_theme:landing:title'); +$subtitle = elgg_echo('n1_theme:landing:subtitle'); + +echo <<<HTML +<div id="n1-landing"> +<div id="n1-landing-inner"> +<p id="n1-landing-title">$title</p> +<p id="n1-landing-subtitle">$subtitle</p> +</div> +</div> +HTML; |