Fix heart icon on homepage

This commit is contained in:
Ryan Watters 2017-03-20 12:05:07 -05:00
parent d359d63ae7
commit f43481f2b7
5 changed files with 5 additions and 4 deletions

View File

@ -85,7 +85,7 @@ Now every time you push changes to your hosted git repository, Netlify will rebu
## Using Hugo Themes with Netlify
The [`git clone` method for installing themes][installthemes] is not supported by Netlify and would require you to recursively remove the `.git` subdirectory from the theme folder, which would prevent automated compatibility with future versions of the theme.
The [`git clone` method for installing themes][installthemes] is not supported by Netlify. If you were to use `git clone`, it would require you to recursively remove the `.git` subdirectory from the theme folder and would therefore prevent compatibility with future versions of the theme.
A *better* approach is to install a theme as a proper git submodule. You can [read the GitHub documentation for submodules][ghsm] or those found on [Git's website][gitsm] for more information, but the command is similar to that of `git clone`:

File diff suppressed because one or more lines are too long

View File

@ -45,7 +45,7 @@ gulp.task("image-resize", () => {
// .pipe(parallel(
// imageresize({ width: imagefull }),
// os.cpus().length
// ))
// ))
// .pipe(gulp.dest("../static/images"))
.pipe(parallel(
imageresize({ width: imagefull, format: 'jpg' }),

View File

@ -92,6 +92,7 @@
.icon-link-external:before { content: '\f08e'; } /* '' */
.icon-link:before { content: '\e812'; } /* '' */
.icon-linux:before { content: '\f17c'; } /* '' */
.icon-love:before { content: '\e804'; } /* '' same as icon-heart*/
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-md:before { content: '\e818'; } /* '' */
.icon-netlify:before { content: '\e80b'; } /* '' */

File diff suppressed because one or more lines are too long