This file contains hidden or 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 | |
| class Ad { | |
| public $title = ''; | |
| public $body = ''; | |
| public $contactName = ''; | |
| public $contactEmail = ''; | |
| public $createdAt = ''; |
This file contains hidden or 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> | |
| <title></title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <script src="http://underscorejs.org/underscore-min.js"></script> | |
| <script src="http://backbonejs.org/backbone-min.js"></script> | |
| </head> | |
| <body> | |
| <div id="main"> |
This file contains hidden or 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
| # Intro to Static Website Development and Hosting (w/ GitHub Pages) | |
| ## What is a static site? | |
| - It doesn't change. | |
| - The opposite of dynamic. :) | |
| ## What are the pros and cons of static sites? | |
| ### Pros: |
OlderNewer