~xdavidwu/xdavidwu.link

237eb8f8ba5e47d0b33a71ad272ac88cf65ab292 — Michael Rose 10 years ago b7db62c
Remove Chrome Frame references
9 files changed, 9 insertions(+), 9 deletions(-)

M README.md
A _includes/browser-upgrade.html
D _includes/chrome-frame.html
M _includes/footer.html
M _layouts/home.html
M _layouts/page.html
M _layouts/post-index.html
M _layouts/post.html
M theme-setup.md
M README.md => README.md +1 -1
@@ 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

A _includes/browser-upgrade.html => _includes/browser-upgrade.html +1 -0
@@ 0,0 1,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]-->
\ No newline at end of file

D _includes/chrome-frame.html => _includes/chrome-frame.html +0 -1
@@ 1,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]-->
\ No newline at end of file

M _includes/footer.html => _includes/footer.html +1 -1
@@ 1,1 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>

M _layouts/home.html => _layouts/home.html +1 -1
@@ 9,7 9,7 @@

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

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

{% include navigation.html %}


M _layouts/page.html => _layouts/page.html +1 -1
@@ 9,7 9,7 @@

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

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

{% include navigation.html %}


M _layouts/post-index.html => _layouts/post-index.html +1 -1
@@ 9,7 9,7 @@

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

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

{% include navigation.html %}


M _layouts/post.html => _layouts/post.html +1 -1
@@ 9,7 9,7 @@

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

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

{% include navigation.html %}


M theme-setup.md => theme-setup.md +2 -2
@@ 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