1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-30 12:24:11 +01:00
OwncloudContactsOfficial/templates/index.php

15 lines
438 B
PHP
Raw Normal View History

2011-08-06 22:32:06 +02:00
<?php // Include Style and Script
OC_Util::addScript('contacts','interface');
OC_Util::addStyle('contacts','styles');
?>
2011-08-09 13:53:58 +02:00
<div id="contacts_contacts" class="leftcontent">
2011-08-06 22:32:06 +02:00
<ul>
2011-08-09 13:53:58 +02:00
<?php echo $this->inc("part.contacts"); ?>
2011-08-06 22:32:06 +02:00
</ul>
2011-08-09 13:53:58 +02:00
<a id="contacts_newcontact"><?php echo $l->t('Add Contact'); ?></a>
2011-08-06 22:32:06 +02:00
</div>
<div id="contacts_details" class="rightcontent" data-id="<?php echo $_['id']; ?>">
2011-08-09 13:53:58 +02:00
<?php echo $this->inc("part.details"); ?>
2011-08-06 22:32:06 +02:00
</div>