mirror of
https://github.com/chenasraf/nextcloud-app-template.git
synced 2026-05-18 01:29:09 +00:00
12 lines
345 B
PHP
12 lines
345 B
PHP
<?php
|
|
|
|
use OCA\NextcloudAppTemplate\AppInfo\Application;
|
|
use OCP\Util;
|
|
|
|
/* @var array $_ */
|
|
$script = $_['script'];
|
|
Util::addScript(Application::APP_ID, Application::JS_DIR . "/nextcloudapptemplate-$script");
|
|
Util::addStyle(Application::APP_ID, Application::CSS_DIR . '/nextcloudapptemplate-style');
|
|
?>
|
|
<div id="nextcloudapptemplate-app"></div>
|