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
'collections' => array( | |
'public' => function($collection) | |
{ | |
// Switch to the stylesheets directory. | |
$directory = $collection->directory('assets/stylesheets', function($collection) | |
{ | |
$collection->add('less/bootstrap/bootstrap.less')->apply('Less'); | |
$collection->add('less/bootstrap/responsive.less')->apply('Less'); | |
$collection->add('less/app.less')->apply('Less'); |
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
#!/bin/bash | |
# | |
# Display usage info | |
vhost-usage() { | |
cat <<"USAGE" | |
Usage: vhost [OPTIONS] <name> | |
-h|--help this screen | |
-pub to create the webhost root in ~/www/name/public/ | |
-url to specify a local address, default is http://name.local |
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
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Sublime Text | |
Comment=Sublime Text 2 | |
Exec=sublime_text | |
Icon=/opt/sublime/Icon/256x256/sublime_text.png | |
Terminal=false | |
Type=Application | |
Categories=GNOME;GTK;Utility;TextEditor; | |
StartupNotify=true |
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
#!/bin/sh | |
#export MOZILLA_FIVE_HOME="/usr/lib/mozilla/" | |
export SUBLIME_HOME="/opt/sublime" | |
$SUBLIME_HOME/sublime_text "$*" |
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
<VirtualHost *:80> | |
ServerAdmin template.email | |
ServerName template.url | |
DocumentRoot template.webroot | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
<Directory template.webroot/> |
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 class="no-js" lang="en"><!-- the "no-js" class is for Modernizr. --> | |
<head id="www-sitename-com" data-template-set="html5-skeleton"> | |
<meta charset="UTF-8"> | |
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |