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
<h1>YELLOW?</h1> | |
<div class="cyan">Cyan</div> | |
<div class="magenta">Magenta</div> | |
<div class="yellow">Yellow</div> | |
<div class="key">Key</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
# | |
# Any .dev folder in ~/Sites | |
# | |
<VirtualHost *:80> | |
VirtualDocumentRoot "/Users/phunky/Sites/%1.0.dev/public" | |
UseCanonicalName Off | |
ServerAlias %1.0.dev.*.xip.io | |
<Directory "/Users/phunky/Sites"> | |
Options FollowSymLinks |
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="box box___blue-grey">blue-grey</div> | |
<div class="box box___grey">grey</div> | |
<div class="box box___brown">brown</div> | |
<div class="box box___deep-orange">deep-orange</div> | |
<div class="box box___orange">orange</div> | |
<div class="box box___amber">amber</div> | |
<div class="box box___yellow">yellow</div> | |
<div class="box box___lime">lime</div> | |
<div class="box box___light-green">light-green</div> | |
<div class="box box___green">green</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="box box___blue-grey">blue-grey</div> | |
<div class="box box___grey">grey</div> | |
<div class="box box___brown">brown</div> | |
<div class="box box___deep-orange">deep-orange</div> | |
<div class="box box___orange">orange</div> | |
<div class="box box___amber">amber</div> | |
<div class="box box___yellow">yellow</div> | |
<div class="box box___lime">lime</div> | |
<div class="box box___light-green">light-green</div> | |
<div class="box box___green">green</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="box box___blue-grey">blue-grey</div> | |
<div class="box box___grey">grey</div> | |
<div class="box box___brown">brown</div> | |
<div class="box box___deep-orange">deep-orange</div> | |
<div class="box box___orange">orange</div> | |
<div class="box box___amber">amber</div> | |
<div class="box box___yellow">yellow</div> | |
<div class="box box___lime">lime</div> | |
<div class="box box___light-green">light-green</div> | |
<div class="box box___green">green</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
<h1>Heading 1</h1> | |
<h2>Heading 2</h2> | |
<h3>Heading 3</h3> |
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="fg"> | |
<div class="fg-full"> | |
Full | |
</div> | |
<div class="fg-half"> | |
Half | |
</div> | |
<div class="fg-half"> |
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="cta-btn blue">Button</div> | |
<div class="cta-btn green">Button</div> | |
<div class="cta-btn red">Button</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
# | |
# Any .dev folder in ~/Sites | |
# | |
<VirtualHost *:80> | |
VirtualDocumentRoot "/Users/phunky/Sites/%1.0.dev/public" | |
UseCanonicalName Off | |
ServerAlias %1.0.dev.*.xip.io | |
<Directory "/Users/phunky/Sites"> | |
Options FollowSymLinks |
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
<?php | |
define('ROOT_DIR', __DIR__ . '/../'); | |
define('VENDOR_DIR', ROOT_DIR. 'vendor/'); | |
define('PUBLIC_DIR', ROOT_DIR . 'public/'); | |
define('ROUTES_DIR', ROOT_DIR . 'routes/'); | |
define('VIEW_DIR', ROOT_DIR . 'views/'); | |
define('CACHE_DIR', ROOT_DIR . 'cache/'); | |
// Include libs | |
require( VENDOR_DIR . 'autoloader.php' ); |