Skip to content

Commit

Permalink
Chapter 3: Static files (3d)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 14, 2017
1 parent 19997c8 commit db6e7d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Binary file added static/favicon.ico
Binary file not shown.
6 changes: 6 additions & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

{% block title %}Flasky{% endblock %}

{% block head %}
{{ super() }}
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
{% endblock %}

{% block navbar %}
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
Expand Down

0 comments on commit db6e7d3

Please sign in to comment.