Files
SmartHomePHP/views/layouts/_header.php
Alex Solomaha 522238f2e2 Material try
2017-01-29 21:43:39 +02:00

47 lines
1.5 KiB
PHP

<?php
/* @var $this \yii\web\View */
/* @var $content string */
use yii\helpers\Html;
use yii\helpers\Url;
?>
<header class="main-header">
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="navbar-title">
<span class="product-font"><span>Solomaha</span> Home</span>
</div>
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<li class="dropdown notifications-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-bell-o"></i>
<!-- <span class="label label-warning">10</span>-->
</a>
<ul class="dropdown-menu">
<li class="header">You have 10 notifications</li>
<li>
<!-- inner menu: contains the actual data -->
<ul class="menu">
<li>
<a href="#">
<i class="fa fa-users text-aqua"></i> 5 new members joined today
</a>
</li>
</ul>
</li>
<li class="footer"><a href="#">View all</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</header>