diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 17:39:06 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 17:39:06 +0200 |
commit | 9ec4ae03ea648b0f882edda44e5a6866bf100d9a (patch) | |
tree | 86223c12020a0f6b87ed9097a9edc2df1a3da9c6 /pelican-bootstrap3/templates/base.html | |
parent | 200880655b04f209e6e5bedd6407b783b359198f (diff) | |
download | pelican-themes-9ec4ae03ea648b0f882edda44e5a6866bf100d9a.zip pelican-themes-9ec4ae03ea648b0f882edda44e5a6866bf100d9a.tar.gz pelican-themes-9ec4ae03ea648b0f882edda44e5a6866bf100d9a.tar.bz2 |
rework static files
get minified CSS and JS files from Debian packages
fix font loading
remove unneeded CSS and JS
Diffstat (limited to 'pelican-bootstrap3/templates/base.html')
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index 7c041d5..d1a75e5 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -56,6 +56,8 @@ <!-- Bootstrap --> {% if BOOTSTRAP_THEME %} <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/bootstrap.{{ BOOTSTRAP_THEME }}.min.css" type="text/css"/> + <!-- needs to be eplicitely included, otherwise fonts don't get loaded in Chromium --> + <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/lato-debian.css" type="text/css"/> {% else %} <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/bootstrap.min.css" type="text/css"/> {% endif %} @@ -194,9 +196,6 @@ <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/bootstrap.min.js"></script> -<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> -<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/respond.min.js"></script> - {% if BANNER %} <script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/bodypadding.js"></script> {% endif %} |