This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<link rel="icon" href="../../favicon.ico"> |
This file contains 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> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<link rel="icon" href="../../favicon.ico"> |
This file contains 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
<!-- Import the header (css,navbar and stuff) --> | |
<% include ./partials/header %> | |
<div class="container"> | |
<h1 class="text-center"> Check out our awesome users!</h1> | |
<table class="col-xs-offset-3 col-xs-6"> | |
<tr> | |
<th class="text-center">Username</th> | |
<th class="text-center">Email Address</th> | |
</tr> |
This file contains 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
<!-- Import the header (css,navbar and stuff) --> | |
<% include ./partials/header %> | |
<div class="container"> | |
<div class="row"> | |
<form role="form" method="POST" action="/submit-registration-sync" > | |
<div class="col-lg-12"> | |
<div class="form-group"> | |
<label for="InputName">Enter Name</label> | |
<div class="input-group"> | |
<input type="text" class="form-control" name="InputName" id="InputName" placeholder="Enter Name" required> |
This file contains 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
"content_templates": | |
[ | |
{ | |
"file":"index", | |
"name":"Home" | |
}, | |
{ | |
"file":"about", | |
"name":"About" | |
} |
This file contains 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
var gulp = require('gulp'); | |
var EXPRESS_PORT = 4000; | |
var EXPRESS_ROOT = __dirname; | |
var LIVERELOAD_PORT = 35729; | |
// Let's make things more readable by | |
// encapsulating each part's setup | |
// in its own method | |
function startExpress() { |
This file contains 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
<div class="colcard col-sm-6 col-md-3"> | |
<!-- Phones --> | |
</div> | |
<div class="colcard col-sm-6 col-md-3"> | |
<!-- Tablets --> | |
</div> | |
<div class="colcard col-sm-6 col-md-3"> | |
<!-- Laptops --> | |
</div> | |
<div class="colcard col-sm-6 col-md-3"> |
This file contains 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
<div class = "col-sm-4">Column!</div> | |
<div class = "col-sm-4">Column!</div> | |
<div class = "col-sm-4">Column!</div> | |
<!-- New row gets created from here --> | |
<div class = "col-sm-4">Column!</div> | |
<!-- Notice the size of the next columns | |
<div class = "col-sm-8">I'm twice as big!!</div> |
This file contains 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
<div class="col-sm-4"><h1>I'm a col</h1></div> | |
<div class="col-sm-4"><h1>I'm a col</h1></div> | |
<div class="col-sm-4"><h1>I'm a col</h1></div> | |
<div class="col-sm-4"><h1>I'm a col</h1></div> |
This file contains 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
<div class="col-sm-4" | |
<!-- Content goes in here! --> | |
</div> |
NewerOlder