summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/layout.html b/templates/layout.html
index 5439633..bf835a9 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -7,6 +7,7 @@
<!-- Bootstrap -->
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet">
+ <link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/custom.css') }}" rel="stylesheet">
</head>
@@ -49,7 +50,7 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
- <span class="glyphicon glyphicon-user"></span>
+ <span class="fa fa-user"></span>
{{ current_user.name }}
<span class="caret"></span>
</a>
@@ -57,7 +58,7 @@
<ul class="dropdown-menu">
<li>
<a href="{{ url_for('logout') }}">
- <span class="glyphicon glyphicon-log-out"></span>
+ <span class="fa fa-sign-out fa-lg"></span>
Logout
</a>
</li>
@@ -67,7 +68,7 @@
{% else %}
<li>
<a href="{{ url_for('login') }}">
- <span class="glyphicon glyphicon-log-in"></span>
+ <span class="fa fa-sign-in fa-lg"></span>
Login
</a>
</li>