aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/Mobile/Contact/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Views/Mobile/Contact/index.php')
-rw-r--r--h-source/Application/Views/Mobile/Contact/index.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/h-source/Application/Views/Mobile/Contact/index.php b/h-source/Application/Views/Mobile/Contact/index.php
index e5fd9ca..9d4d806 100644
--- a/h-source/Application/Views/Mobile/Contact/index.php
+++ b/h-source/Application/Views/Mobile/Contact/index.php
@@ -20,12 +20,13 @@
// along with h-source. If not, see <http://www.gnu.org/licenses/>.
?>
- <div data-role="content">
-
- <div class="position_tree_box">
- <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> &raquo; contact
- </div>
-
- <p>write in the file <b>Application/Views/Contact/index.php</b> your contact information</p>
-
- </div>
+<?php
+ if (file_exists(ROOT."/Template/".Params::$viewSubfolder."/Contact/index_$lang.php"))
+ {
+ include(ROOT."/Template/".Params::$viewSubfolder."/Contact/index_$lang.php");
+ }
+ else
+ {
+ include(ROOT."/Template/".Params::$viewSubfolder."/Contact/index.php");
+ }
+?>