|
@@ -14,8 +14,7 @@
|
|
|
<div class="container animac">
|
|
|
<div class="row">
|
|
|
<div class="col-sm-12">
|
|
|
- <h1 class="light super-duper cm-sans">Studio</h1>
|
|
|
- <h1 class="light super cm"></h1>
|
|
|
+ <h1 class="light super-duper cm-sans wow fadeInLeft">Studio</h1>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -24,8 +23,8 @@
|
|
|
<div class="container animac">
|
|
|
<div class="row">
|
|
|
<div class="col-sm-6">
|
|
|
- <h1 class="light super cm-sans">I Can Haz Fancy Communication Designs</h1>
|
|
|
- <h4 class="light cm">And a Fun Tagline Too</h4>
|
|
|
+ <h1 class="light super cm-sans tight wow fadeInDown" data-wow-delay="500ms">Web</h1>
|
|
|
+ <h2 class="light cm tight">Development & Design</h4>
|
|
|
<h5 class="light">How about a couple lines for a description<br/>A second line</h5>
|
|
|
</div>
|
|
|
<div class="col-sm-6">
|
|
@@ -134,11 +133,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="container">
|
|
|
+ <div class="row">
|
|
|
+ <h3 class="big cm-sans">Recent Projects</h3>
|
|
|
+ </div>
|
|
|
<div class="row">
|
|
|
<?php query_posts('category_name=studio&showposts=3'); ?>
|
|
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
|
|
- <div class="col-sm-4 wow fadeInLeft">
|
|
|
+ <div class="col-sm-4">
|
|
|
<div class="studio-thumbnail">
|
|
|
<?php $img_url = wp_get_attachment_image_src(get_post_thumbnail_id(),'medium'); ?>
|
|
|
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img class="studio-thumb" src="<?php echo $img_url[0];?>" width="100%" alt="<?php the_title(); ?>"/></a>
|
|
@@ -155,7 +158,7 @@
|
|
|
<div class="row">
|
|
|
<?php query_posts('category_name=studio&offset=3&showposts=3'); ?>
|
|
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
|
|
- <div class="col-sm-4 wow fadeInLeft">
|
|
|
+ <div class="col-sm-4">
|
|
|
<div class="studio-thumbnail">
|
|
|
<?php $img_url = wp_get_attachment_image_src(get_post_thumbnail_id(),'studio'); ?>
|
|
|
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( '%s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><img class="studio-thumb" src="<?php echo $img_url[0];?>" width="100%" alt="<?php the_title(); ?>"/></a>
|