diff options
author | Justin Mayer <entroP@gmail.com> | 2018-10-18 12:32:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 12:32:48 +0200 |
commit | 85d342715cc548bea260d6f46f83a54db467d847 (patch) | |
tree | 1de0a2d3f08ad28a0ad1f09452a6aef55dc284a1 | |
parent | f1717356828bb6d3f4f0929a6e942e3a34242a48 (diff) | |
parent | 78af9a11805b5a611fca9b791704b86e3ffa3139 (diff) | |
download | pelican-themes-85d342715cc548bea260d6f46f83a54db467d847.tar.gz |
Merge pull request #597 from charlesreid1/patch-1
add FAVICON variable to simple-bootstrap theme
-rwxr-xr-x | simple-bootstrap/templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/simple-bootstrap/templates/base.html b/simple-bootstrap/templates/base.html index 33ae7f8..724e04c 100755 --- a/simple-bootstrap/templates/base.html +++ b/simple-bootstrap/templates/base.html @@ -6,6 +6,9 @@ <meta charset="utf-8" /> <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" /> <link href="{{ SITEURL }}/theme/static/css/style.css" rel="stylesheet" /> + {% if FAVICON %} + <link rel="shortcut icon" href="{{ SITEURL }}/{{ FAVICON }}" type="image/x-icon" /> + {% endif %} <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> {% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> |