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
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title></title> | |
<meta name='DC.title' content=''> | |
<meta name='subtitle' content='This is my subtitle'> | |
<meta name='url' content=''> | |
<meta name='identifier-URL' content=''> | |
<meta name='reply-to' content='[email protected]'> |
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
//To use place the function at the bottom of your functions.php file in the root of your wordpress installation directory. | |
function jherve_kill_monitor ( $modules ) { | |
unset( $modules['monitor'] ); | |
return $modules; | |
} | |
add_filter( 'jetpack_get_available_modules', 'jherve_kill_monitor' ); | |
function jherve_kill_sso ( $modules ) { | |
unset( $modules['sso'] ); | |
return $modules; |
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
function doGet(e) { | |
var app = UiApp.createApplication(); | |
// The text label container | |
var mainPanel = app.createVerticalPanel().setHeight("100%").setWidth("100%"); | |
mainPanel.setHorizontalAlignment(UiApp.HorizontalAlignment.CENTER).setVerticalAlignment(UiApp.VerticalAlignment.MIDDLE); | |
mainPanel.add(app.createLabel("Generate a blank board page.")); | |
mainPanel.add(app.createLabel("Refresh the page to show it in the lists")); | |
// The panel that holds our button to click | |
var buttonPanel = app.createVerticalPanel().setHeight("100%").setWidth("100%"); | |
buttonPanel.setHorizontalAlignment(UiApp.HorizontalAlignment.CENTER).setVerticalAlignment(UiApp.VerticalAlignment.MIDDLE); |