Between <%= customername %> And <%= companyname %>
You <%= customername %>, located at <%= customeraddress %> (“You”) are hiring us <%= companyname %> (“We or Us”) to:
- <%= workdescription %>
| alias bashedit='vim ~/.bashrc' | |
| alias bashrefresh='source ~/.bashrc' | |
| alias home='cd ~/' | |
| alias ll='ls -lahFG' | |
| # get disk usage for all directories inside current directory | |
| alias dud='du -sh ./*/' | |
| # show disk usage for all drives | |
| alias disks='df -h --type=ext4' |
| <ul class="nav--primary"> | |
| <li class="nav__item">One</li> | |
| <li class="nav__item">Two</li> | |
| <li class="nav__item">Three</li> | |
| </ul> | |
| <ul class="nav--secondary"> | |
| <li class="nav__item">One</li> | |
| <li class="nav__item">Two</li> | |
| <li class="nav__item">Three</li> |
| { | |
| "name": "example-project", | |
| "version": "0.1.0", | |
| "devDependencies": { | |
| "grunt": "~0.4.2", | |
| "grunt-contrib-jshint": "~0.6.3", | |
| "grunt-contrib-uglify": "~0.2.2" | |
| } | |
| } |
| (function () { | |
| 'use strict'; | |
| window.Obj = function Obj () { | |
| // Underscores for top level variables | |
| var _self = this; | |
| // Init object here | |
| function init () { } |
| /*globals jQuery,Mustache*/ | |
| (function($) { | |
| $.fn.modal = function(options) { | |
| var els = $(this) | |
| , that = { | |
| /** | |
| * initialization, set up event handlers, etc. | |
| */ |