-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnc-ui-navbar.php
35 lines (34 loc) · 1.35 KB
/
nc-ui-navbar.php
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
34
35
<?php
/*
* Navigation bar at the top of each page
*/
?>
<nav class="navbar navbar-default nc-navbar navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="?page=front"><?php echo ncSiteName(); ?></a>
<p class="navbar-text"><a href="#" id="nc-nav-network-title"></a></p>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<a href="?page=user&user=<?php echo $uid; ?>">
<p class="navbar-text">
<img class="nc-nav-img" src="nc-data/users/<?php echo $uid; ?>.png"></img>
<b><?php echo ncUserFullname(); ?></b>
</p>
</a>
<li>
<?php
if (ncIsUserSignedIn()) {
echo "<a href='?page=logout'>Log out</a>";
} else {
echo "<a href='?page=login'>Log in</a>";
}
?>
</li>
</ul>
</div>
</div>
</nav>