Remove Chrome Frame references

This commit is contained in:
Michael Rose 2013-09-07 09:25:00 -04:00
parent b7db62c970
commit 237eb8f8ba
9 changed files with 9 additions and 9 deletions

View file

@ -28,7 +28,7 @@ General notes and suggestions for customizing Minimal Mistakes.
minimal-mistakes/
├── _includes
| ├── 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
| ├── head.html //site head
| ├── navigation.html //site top nav

View 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]-->

View file

@ -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]-->

View file

@ -1 +1 @@
<h6>&copy; {{ 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>&copy; {{ 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>

View file

@ -9,7 +9,7 @@
<body class="home" itemscope itemtype="http://schema.org/WebPage">
{% include chrome-frame.html %}
{% include browser-upgrade.html %}
{% include navigation.html %}

View file

@ -9,7 +9,7 @@
<body class="page" itemscope itemtype="http://schema.org/WebPage">
{% include chrome-frame.html %}
{% include browser-upgrade.html %}
{% include navigation.html %}

View file

@ -9,7 +9,7 @@
<body class="articles" itemscope itemtype="http://schema.org/WebPage">
{% include chrome-frame.html %}
{% include browser-upgrade.html %}
{% include navigation.html %}

View file

@ -9,7 +9,7 @@
<body class="article" itemscope itemtype="http://schema.org/WebPage">
{% include chrome-frame.html %}
{% include browser-upgrade.html %}
{% include navigation.html %}

View file

@ -34,7 +34,7 @@ General notes and suggestions for customizing Minimal Mistakes.
minimal-mistakes/
├── _includes
| ├── 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
| ├── head.html //site head
| ├── navigation.html //site top nav
@ -62,7 +62,7 @@ minimal-mistakes/
### _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