This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name='viewport' content='width=device-width'> | |
| <title>{{ site.title }}</title> | |
| <meta name='description' content="{{ site.description }}"> | |
| <meta name="author" content="{{ site.author }}"> | |
| <meta property="og:type" content="website" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .columns { | |
| padding-top: 5vw; | |
| display: grid; | |
| @include tablet { | |
| grid-template-columns: 1fr 1fr; | |
| grid-column-gap: 10px; | |
| } | |
| @include desktop { | |
| grid-template-columns: 1fr 1fr; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = rongying | |
| email = work@work.com | |
| [includeIf "gitdir:~/Documents/ry/"] | |
| path = ~/Documents/ry/.gitconfig |
I hereby claim:
- I am kohrongying on github.
- I am rongying (https://keybase.io/rongying) on keybase.
- I have a public key ASDvON7m9jnJuULSx5D8XKXjPoiYp6Em8hruty-y_aQT6Ao
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| npm install gulp --save-dev | |
| npm install gulp-sass gulp-autoprefixer browser-sync gulp-nunjucks-render gulp-data gulp-image-resize gulp-clean-css gulp-htmlmin gulp-copy gulp-sitemap del --save-dev | |
| npm init | |
| */ | |
| // Requiring Gulp and dependencies | |
| const gulp = require('gulp'), | |
| sass = require('gulp-sass'), | |
| autoprefixer = require('gulp-autoprefixer'), |