Skip to content

Instantly share code, notes, and snippets.

@dannyvassallo
Created December 11, 2015 20:58
Show Gist options
  • Save dannyvassallo/18932b3440d7f844c152 to your computer and use it in GitHub Desktop.
Save dannyvassallo/18932b3440d7f844c152 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style>
.my-portfolio{
margin-top: 70px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo">Logo</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="sass.html">Sass</a></li>
<li><a href="badges.html">Components</a></li>
<li><a href="collapsible.html">JavaScript</a></li>
</ul>
</div>
</nav>
<div class="container my-portfolio">
<div class="row">
<div class="slider">
<ul class="slides">
<li>
<img src="http://placehold.it/580/640"> <!-- random image -->
<div class="caption center-align">
<h3>This is our big Tagline!</h3>
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
</div>
</li>
<li>
<img src="http://lorempixel.com/580/250/nature/2"> <!-- random image -->
<div class="caption left-align">
<h3>Left Aligned Caption</h3>
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
</div>
</li>
<li>
<img src="http://lorempixel.com/580/250/nature/3"> <!-- random image -->
<div class="caption right-align">
<h3>Right Aligned Caption</h3>
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
</div>
</li>
<li>
<img src="http://lorempixel.com/580/250/nature/4"> <!-- random image -->
<div class="caption center-align">
<h3>This is our big Tagline!</h3>
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5>
</div>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
</div>
<div class="row">
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
</div>
<div class="row">
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
</div>
<div class="row">
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
<div class="col s3">
<img class="materialboxed responsive-img" width="650" src="http://placehold.it/640/640">
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script>
$(document).ready(function(){
$('.materialboxed').materialbox();
$('.slider').slider({full_width: true});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment