diff options
Diffstat (limited to 'apps/contacts/templates/index.php')
-rw-r--r-- | apps/contacts/templates/index.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/contacts/templates/index.php b/apps/contacts/templates/index.php new file mode 100644 index 00000000000..0cd214bfb18 --- /dev/null +++ b/apps/contacts/templates/index.php @@ -0,0 +1,13 @@ +<?php // Include Style and Script +OC_Util::addScript('contacts','interface'); +OC_Util::addStyle('contacts','styles'); +?> + +<div class="contacts_contacts leftcontent"> + <ul> + <?php echo $this->inc("_contacts"); ?> + </ul> +</div> +<div class="contacts_details rightcontent"> + <?php echo $this->inc("_details"); ?> +</div> |