Skip to content

Commit

Permalink
Remove Chrome Frame references
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed Sep 7, 2013
1 parent b7db62c commit 237eb8f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions _includes/browser-upgrade.html
Original file line number Diff line number Diff line change
@@ -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 change: 0 additions & 1 deletion _includes/chrome-frame.html

This file was deleted.

2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body class="home" itemscope itemtype="http://schema.org/WebPage">

{% include chrome-frame.html %}
{% include browser-upgrade.html %}

{% include navigation.html %}

Expand Down
2 changes: 1 addition & 1 deletion _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body class="page" itemscope itemtype="http://schema.org/WebPage">

{% include chrome-frame.html %}
{% include browser-upgrade.html %}

{% include navigation.html %}

Expand Down
2 changes: 1 addition & 1 deletion _layouts/post-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body class="articles" itemscope itemtype="http://schema.org/WebPage">

{% include chrome-frame.html %}
{% include browser-upgrade.html %}

{% include navigation.html %}

Expand Down
2 changes: 1 addition & 1 deletion _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body class="article" itemscope itemtype="http://schema.org/WebPage">

{% include chrome-frame.html %}
{% include browser-upgrade.html %}

{% include navigation.html %}

Expand Down
4 changes: 2 additions & 2 deletions theme-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 237eb8f

Please sign in to comment.