Created
January 26, 2013 16:59
-
-
Save sharpred/4643263 to your computer and use it in GitHub Desktop.
dementia scrapbook index.html
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 xmlns="http://www.w3.org/1999/html"> | |
<head> | |
<title>Dementia ScrapBook</title> | |
<link href="css/bootstrap.css" rel="stylesheet"> | |
<link href="css/bootstrap-responsive.css" rel="stylesheet"> | |
<link href="css/docs.css" rel="stylesheet"> | |
<link href='http://fonts.googleapis.com/css?family=Metrophobic' rel='stylesheet' type='text/css'> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
$("#people").click(function() { | |
Ti.App.fireEvent('htmlevent', { | |
type : 'index' | |
}); | |
}) | |
$("#timeline").click(function() { | |
Ti.App.fireEvent('htmlevent', { | |
type : 'timeline' | |
}); | |
}) | |
$("#postcards").click(function() { | |
Ti.App.fireEvent('htmlevent', { | |
type : 'timeline' | |
}); | |
}) | |
}); | |
</script> | |
</head> | |
<body> | |
<!-- containter --> | |
<div class="content"> | |
<div class=" hidden-phone row-fluid"> | |
<div class="spacer50"></div> | |
</div> | |
<div class="row-fluid"> | |
<div class="span1"></div> | |
<div class="span10 blue-box" id="people"> | |
<div class="row"></div> | |
<div class="span8"> | |
<p class="title"> | |
Me and My Family | |
</p> | |
</div> | |
<div class="hidden-phone span3"> | |
<div class="circle"></div> | |
</div> | |
</div> | |
</div> | |
<div class="row-fluid nomargin"> | |
<div class="span1"></div> | |
<div class="span5 purple-box" id="timeline"> | |
<p class="title"> | |
Today & </br>Tomorrow | |
</p> | |
</div> | |
<div class="span5 orange-box" id="postcards"> | |
<p class="title"> | |
Postcards | |
</p> | |
<p class="heading2"><img src="img/Envelope-Closed-white.png"/>One New Message | |
</p> | |
</div> | |
</div> | |
</div> | |
</body> | |
<script src="js/bootstrap.js"></script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment