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
<?php snippet('header') ?> | |
<?php snippet('menu') ?> | |
<?php snippet('submenu') ?> | |
<?php | |
// get the entire string and | |
// split it into an array by comma | |
$tokens = str::split($page->greeting()); |
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
<form class="custom"> | |
<input placeholder="First Name"> | |
<input placeholder="Last Name"> | |
<input placeholder="Email"> | |
<small class="error">Try that again...</small> | |
<textarea class="input-text" placeholder="Comment"></textarea> | |
<a class="primary radius button small">Submit</a> | |
</form> |
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
<div class="four columns"> | |
<div class="request"> | |
<div class="accept"> | |
<a href="#" class="button primary radius large">Accept</a> | |
</div> | |
<p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p> | |
<h6 class="date">September 10 @ 4:30pm</h6> | |
</div> | |
</div> |
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
<div class="contact-pop" data-popout=""> | |
<form action="#" class="custom"> | |
<a href="#" data-close="" class="pop-close">x</a> | |
<div class="row"> | |
<div class="six columns"> | |
<label for="date"><input type="text" name="date" id="date" placeholder="ON THIS DATE" data-customforms="disabled"></label> | |
</div> | |
<div class="six columns"> | |
<label for="time"><select name="time" id="time"> | |
<option selected value="now"> At This Time </option> <option value="morning"> Morning </option> |
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
<div class="row result"> | |
<div class="one column number"> | |
<h3> | |
<!--Result #--> | |
</h3> | |
</div> | |
<div class="six columns"> | |
<div class="row"> | |
<div class="three columns mobile-one"> | |
<div class="avatar"> |
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
<div class="reviews"> | |
<ul class="link-list avatars"> | |
<li> | |
<a href="#" class="selected single"></a> | |
<div class="heart"> | |
<img src="images/layout/heart-red.png" alt="heart"> | |
</div><img src="http://placehold.it/50x50" alt=""> | |
</li> | |
<li> | |
<a href="#" class="single"></a> |
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
$(document).ready(function(){ | |
countdown(); | |
setInterval(countdown, 1000); | |
function countdown () { | |
var now = moment(), // get the current moment | |
// May 28, 2013 @ 12:00AM | |
then = moment([2013, 4, 28]), | |
// get the difference from now to then in ms | |
ms = then.diff(now, 'milliseconds', true); | |
// If you need years, uncomment this line and make sure you add it to the concatonated phrase |
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
<div class="row"> | |
<div class="five columns"> | |
Content... | |
</div><!-- / five columns --> | |
<div class="seven columns"> | |
Content... | |
</div><!-- / seven columns --> | |
</div><!-- / row --> |
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
<a href="#" class="large primary button radius">Let's get started »</a> | |
<a href="" class="medium primary button radius">Continue »</a> | |
<a href="" class="small primary button radius">Log In</a> |
OlderNewer