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 | |
| /** ********************************* | |
| * GIT Deploy to Pivotal Staging | |
| * | |
| * 1. Ensure this file exists in the root directory of your website | |
| * on the staging server | |
| * 2. Update the $config variables below | |
| * 3. Browse to this file in your browser to "clone" the repo | |
| * 4. Setup a Webhook to auto-deploy: | |
| * URL: http://nbm:nbm@{{site_domain_name}}/stage.php |
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> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9" lang="en" prefix="og: http://ogp.me/ns#"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js" lang="en" prefix="og: http://ogp.me/ns#"> <!--<![endif]--> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
| <title>Coming Soon</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
| <!-- <meta http-equiv="refresh" content="30"> --> |
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
| javascript:(function(){ | |
| /* | |
| * Highlight text and press the bookmarklet - the text is now in your clipboard | |
| * Installation: Add this javascript to a new browser bookmark in the URL field | |
| */ | |
| let text = ""; | |
| const activeEl = document.activeElement; | |
| const activeElTagName = activeEl ? activeEl.tagName.toLowerCase() : null; | |
| /* Extract text from textarea/text input */ |
OlderNewer