Refactor project structure
This commit is contained in:
12
core/templates/notifications/notification.html
Normal file
12
core/templates/notifications/notification.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<li>
|
||||
<a href="#_url_#">
|
||||
<div class="pull-left">
|
||||
<img src="#_image_#" class="img-circle" alt="user image">
|
||||
</div>
|
||||
<h4>
|
||||
#_fromName_#
|
||||
<small><i class="fa fa-clock-o"></i> <span class="notificationTime">#_time_#</span></small>
|
||||
</h4>
|
||||
<p style="margin-top:10px;">#_message_#</p>
|
||||
</a>
|
||||
</li>
|
||||
20
core/templates/notifications/notifications.html
Normal file
20
core/templates/notifications/notifications.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<li class="dropdown messages-menu">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
|
||||
<i class="fa fa-tasks"></i>
|
||||
<span class="label label-danger">#_count_#</span>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li class="header">#_header_#</li>
|
||||
<li>
|
||||
<!-- inner menu: contains the actual data -->
|
||||
<ul class="menu">
|
||||
#_notifications_#
|
||||
</ul>
|
||||
</li>
|
||||
<li class="footer">
|
||||
<!--
|
||||
<a href="#">See All Messages</a>
|
||||
-->
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
Reference in New Issue
Block a user