Welcome to mirror list, hosted at ThFree Co, Russian Federation.

help.php « templates « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f58fc66f1b22e468b67581a39f985c21e0ba90f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<div id="app-navigation">
	<ul>
	<?php if($_['admin']) { ?>
		<li>
			<a class="icon-user <?php p($_['style1']); ?>"
				href="<?php print_unescaped($_['url1']); ?> class= "">
				<?php p($l->t('User documentation')); ?>
			</a>
		</li>
		<li>
			<a class="icon-user-admin <?php p($_['style2']); ?>"
				href="<?php print_unescaped($_['url2']); ?>">
				<?php p($l->t('Administrator documentation')); ?>
			</a>
		</li>
	<?php } ?>

		<li>
			<a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener">
				<?php p($l->t('Documentation')); ?> ↗
			</a>
		</li>
		<li>
			<a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener">
				<?php p($l->t('Forum')); ?> ↗
			</a>
		</li>
</div>

<div id="app-content" class="help-includes">
	<iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe">
	</iframe>
</div>