diff options
author | Sem <sembrestels@riseup.net> | 2012-08-15 02:16:34 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-15 02:16:34 +0200 |
commit | 9e2436181c785c741fb4705ee7b3c3069bf5f1c7 (patch) | |
tree | 7620463d53f94c3d6e8ff444e2ad7651bd828992 /views/default/n1_theme/landing.php | |
parent | 405f0f8db9f72afed4c357a22c4dd99bea39c419 (diff) | |
download | saravea_theme-9e2436181c785c741fb4705ee7b3c3069bf5f1c7.tar.gz saravea_theme-9e2436181c785c741fb4705ee7b3c3069bf5f1c7.tar.bz2 |
Added landing page.
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; |