Skip to content

Instantly share code, notes, and snippets.

@easydevtuts
easydevtuts / gulpfile
Created June 27, 2015 14:02
This is the initial gulpfile forthe React Bootstrap tutorials.
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
// Static server
gulp.task('browser-sync', function() {
browserSync.init({
server: {
baseDir: "./"
}
});
@easydevtuts
easydevtuts / package
Created June 27, 2015 14:01
Package file for the React Bootstrap tutorials.
{
"devDependencies": {
"browser-sync": "^2.7.7",
"gulp": "^3.8.11"
}
}
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap 3.0 Grid System</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<style>
body{