diff options
-rw-r--r-- | pelican-bootstrap3/static/css/noscript.css | 10 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/base.html | 8 |
2 files changed, 15 insertions, 3 deletions
diff --git a/pelican-bootstrap3/static/css/noscript.css b/pelican-bootstrap3/static/css/noscript.css new file mode 100644 index 0000000..47f2aed --- /dev/null +++ b/pelican-bootstrap3/static/css/noscript.css @@ -0,0 +1,10 @@ +.collapse { + display: block; + visibility: visible; +} + +.dropdown-menu { + display: block; + position: relative; + float: none; +} diff --git a/pelican-bootstrap3/templates/base.html b/pelican-bootstrap3/templates/base.html index d1a75e5..e7ebc33 100644 --- a/pelican-bootstrap3/templates/base.html +++ b/pelican-bootstrap3/templates/base.html @@ -77,9 +77,11 @@ {% if CUSTOM_CSS %} <link href="{{ SITEURL }}/{{ CUSTOM_CSS }}" rel="stylesheet"> {% endif %} - {% if SHARIFF %} - <link href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/shariff/shariff.min.css" rel="stylesheet"> - {% endif %} + + <!-- link the noscript.css stylesheet only if javascript is disabled --> + <noscript> + <link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/noscript.css" /> + </noscript> {% if FEED_ALL_ATOM %} <link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" |