mirror of
				https://github.com/nerzhul/ocsms.git
				synced 2025-10-31 02:17:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| \OCP\Util::addScript('ocsms', 'script');
 | |
| \OCP\Util::addStyle('ocsms', 'style');
 | |
| ?>
 | |
| 
 | |
| <div id="app">
 | |
| 	<div id="app-navigation">
 | |
| 		<?php print_unescaped($this->inc('part.navigation')); ?>
 | |
| 		<?php print_unescaped($this->inc('part.settings')); ?>
 | |
| 	</div>
 | |
| 
 | |
| 	<div id="app-content">
 | |
| 		<div id="app-content-wrapper">
 | |
| 			<?php print_unescaped($this->inc('part.content')); ?>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 |