diff --git a/README.md b/README.md index c72cc9a8..b478e1af 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/_includes/browser-upgrade.html b/_includes/browser-upgrade.html new file mode 100644 index 00000000..99d9cbc2 --- /dev/null +++ b/_includes/browser-upgrade.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_includes/chrome-frame.html b/_includes/chrome-frame.html deleted file mode 100644 index b65f1b01..00000000 --- a/_includes/chrome-frame.html +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index 5c7e7bbc..e4713ae2 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1 +1 @@ -
© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by Jekyll using the Minimal Mistakes theme.
+

© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by Jekyll using the Minimal Mistakes theme.

diff --git a/_layouts/home.html b/_layouts/home.html index 6fdc15f1..c4b36038 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -9,7 +9,7 @@ -{% include chrome-frame.html %} +{% include browser-upgrade.html %} {% include navigation.html %} diff --git a/_layouts/page.html b/_layouts/page.html index 00d1bd16..91b15a22 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -9,7 +9,7 @@ -{% include chrome-frame.html %} +{% include browser-upgrade.html %} {% include navigation.html %} diff --git a/_layouts/post-index.html b/_layouts/post-index.html index 6ed5c8b6..fef4e8aa 100644 --- a/_layouts/post-index.html +++ b/_layouts/post-index.html @@ -9,7 +9,7 @@ -{% include chrome-frame.html %} +{% include browser-upgrade.html %} {% include navigation.html %} diff --git a/_layouts/post.html b/_layouts/post.html index 6d27a1b0..ec81d443 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,7 +9,7 @@ -{% include chrome-frame.html %} +{% include browser-upgrade.html %} {% include navigation.html %} diff --git a/theme-setup.md b/theme-setup.md index 3e8a6c03..464969c1 100644 --- a/theme-setup.md +++ b/theme-setup.md @@ -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