Remove Chrome Frame references
This commit is contained in:
parent
b7db62c970
commit
237eb8f8ba
9 changed files with 9 additions and 9 deletions
|
@ -28,7 +28,7 @@ General notes and suggestions for customizing Minimal Mistakes.
|
||||||
minimal-mistakes/
|
minimal-mistakes/
|
||||||
├── _includes
|
├── _includes
|
||||||
| ├── author-bio.html //bio stuff goes here
|
| ├── author-bio.html //bio stuff goes here
|
||||||
| ├── chrome-frame.html //displays on IE8 and less
|
| ├── browser-upgrade.html //displays on IE8 and less
|
||||||
| ├── footer.html //site footer
|
| ├── footer.html //site footer
|
||||||
| ├── head.html //site head
|
| ├── head.html //site head
|
||||||
| ├── navigation.html //site top nav
|
| ├── navigation.html //site top nav
|
||||||
|
|
1
_includes/browser-upgrade.html
Normal file
1
_includes/browser-upgrade.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<!--[if lt IE 9]><div class="browser-upgrade alert alert-info">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div><![endif]-->
|
|
@ -1 +0,0 @@
|
||||||
<!--[if lt IE 9]><div class="chrome-frame alert alert-info"><strong>Your browser is really old!</strong> <a href="http://browsehappy.com/">Why not upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better enjoy this site?</div><![endif]-->
|
|
|
@ -1 +1 @@
|
||||||
<h6>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/">Minimal Mistakes</a> theme.</h6>
|
<h4>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://mademistakes.com/">Minimal Mistakes</a> theme.</h4>
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<body class="home" itemscope itemtype="http://schema.org/WebPage">
|
<body class="home" itemscope itemtype="http://schema.org/WebPage">
|
||||||
|
|
||||||
{% include chrome-frame.html %}
|
{% include browser-upgrade.html %}
|
||||||
|
|
||||||
{% include navigation.html %}
|
{% include navigation.html %}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<body class="page" itemscope itemtype="http://schema.org/WebPage">
|
<body class="page" itemscope itemtype="http://schema.org/WebPage">
|
||||||
|
|
||||||
{% include chrome-frame.html %}
|
{% include browser-upgrade.html %}
|
||||||
|
|
||||||
{% include navigation.html %}
|
{% include navigation.html %}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<body class="articles" itemscope itemtype="http://schema.org/WebPage">
|
<body class="articles" itemscope itemtype="http://schema.org/WebPage">
|
||||||
|
|
||||||
{% include chrome-frame.html %}
|
{% include browser-upgrade.html %}
|
||||||
|
|
||||||
{% include navigation.html %}
|
{% include navigation.html %}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<body class="article" itemscope itemtype="http://schema.org/WebPage">
|
<body class="article" itemscope itemtype="http://schema.org/WebPage">
|
||||||
|
|
||||||
{% include chrome-frame.html %}
|
{% include browser-upgrade.html %}
|
||||||
|
|
||||||
{% include navigation.html %}
|
{% include navigation.html %}
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ General notes and suggestions for customizing Minimal Mistakes.
|
||||||
minimal-mistakes/
|
minimal-mistakes/
|
||||||
├── _includes
|
├── _includes
|
||||||
| ├── author-bio.html //bio stuff goes here
|
| ├── author-bio.html //bio stuff goes here
|
||||||
| ├── chrome-frame.html //displays on IE8 and less
|
| ├── browser-upgrade.html //displays on IE8 and less
|
||||||
| ├── footer.html //site footer
|
| ├── footer.html //site footer
|
||||||
| ├── head.html //site head
|
| ├── head.html //site head
|
||||||
| ├── navigation.html //site top nav
|
| ├── navigation.html //site top nav
|
||||||
|
@ -62,7 +62,7 @@ minimal-mistakes/
|
||||||
|
|
||||||
### _config.yml
|
### _config.yml
|
||||||
|
|
||||||
Most of the variables found here are used in the .html files found in `_includes` if you need to add or remove anything. A good place to start would be to change the title, tagline, description, and url of your site. When working locally comment out `url` or else you will get a bunch of broken links because they are absolute and prefixed with `{{ site.url }}` in the various `_includes` and `_layouts`. Just remember to uncomment `url` when building for deployment or pushing to **gh-pages**...
|
Most of the variables found here are used in the .html files found in `_includes` if you need to add or remove anything. A good place to start would be to change the title, tagline, description, and url of your site. When working locally comment out `url` or else you will get a bunch of broken links because they are absolute and prefixed with `{{ "{{ site.url " }}}}` in the various `_includes` and `_layouts`. Just remember to uncomment `url` when building for deployment or pushing to **gh-pages**...
|
||||||
|
|
||||||
#### Owner/Author Information
|
#### Owner/Author Information
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue