aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaz Reid <charlesreid1@gmail.com>2018-05-13 23:46:54 -0700
committerGitHub <noreply@github.com>2018-05-13 23:46:54 -0700
commit78af9a11805b5a611fca9b791704b86e3ffa3139 (patch)
tree8410d1e5e4c7206af4777019749da0fdc9cb56ab
parent8b244609f5f6fcce30c5324cfa8b1e5c4df0e199 (diff)
downloadpelican-themes-78af9a11805b5a611fca9b791704b86e3ffa3139.tar.gz
add FAVICON variable to theme
-rwxr-xr-xsimple-bootstrap/templates/base.html3
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" />