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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<link rel="stylesheet" href="" /> | |
</head> | |
<body> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> |
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
.ir { | |
border:0; | |
font: 0/0 a; | |
text-shadow: none; | |
color: transparent; | |
background-color: transparent; | |
} |
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
!!! | |
html | |
head | |
title= title | |
link(rel='stylesheet', href='/bootstrap/css/bootstrap.min.css') | |
link(rel='stylesheet', href='/bootstrap/css/bootstrap-responsive.min.css') | |
link(rel='stylesheet', href='/stylesheets/style.css') | |
script(src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js') | |
script(src='/bootstrap/js/bootstrap.min.js') | |
body |
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
extends layout | |
block content | |
div.top | |
form.form-horizontal(method="post", id="loginForm") | |
label Username | |
input.span3(id="username", type="text", name="User", placeholder="Enter your username") | |
label Password | |
input.span3(id="password", type="password", name="Password") | |
input.btn(type="submit", value="Log In") |
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> | |
<head> | |
<meta charset=utf-8 /> | |
<title>HTML Fractions - Divs</title> | |
<style> | |
div.qtn { | |
font-size: 14px; | |
} | |
div.q { |
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> | |
<head> | |
<meta charset=utf-8 /> | |
<title>HTML Fractions - Table</title> | |
<style> | |
table { | |
font-size: 16px; | |
} |
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
<sup>x<sup>2</sup> + 3x + 5</sup>⁄<sub>2x</sub> |
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
/** Load Google fonts (Genesis Studio Press theme) */ | |
add_action( 'wp_enqueue_scripts', 'minimum_load_google_fonts' ); | |
function minimum_load_google_fonts() { | |
wp_enqueue_style( | |
'google-fonts', | |
'http://fonts.googleapis.com/css?family=Lato:300,700', | |
array(), | |
PARENT_THEME_VERSION | |
); | |
} |
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
options(rstudio.markdownToHTML = | |
function(inputFile, outputFile) { | |
system(paste("pandoc", shQuote(inputFile), "-s --webtex=http://chart.apis.google.com/chart?cht=tx\\&chf=bg,s,FFFFFF00\\&chl= --self-contained -o", shQuote(outputFile))) | |
} | |
) | |
print("Global (or Local) .Rprofile file has been loaded.") // change to Local if .Rprofile is stored in project | |
// there needs to be a blank file here |
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
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script> | |
<script type="text/javascript"> | |
jQuery(document).ready(function($) { | |
// check to see if the page contains this element | |
if ( $('.my-bg-slider').length > 0 ) { | |
// insert the URIs of all the images you wish to include in the slider here: | |
var backgroundImages = [ 'http://www.example.com.au/wp-content/uploads/2012/12/DSC_02461.jpg', | |
'http://www.example.com.au/wp-content/uploads/2012/11/DSC_0161_1.jpg', | |
'http://www.example.com.au/wp-content/uploads/2012/12/DSC_0587.jpg', |
OlderNewer