Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
erwstout committed Mar 7, 2017
2 parents 1356947 + 821c3d5 commit 30698d9
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 13 deletions.
5 changes: 4 additions & 1 deletion assets/css/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/theme.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions assets/scss/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ footer.container{
}
}

.google-map-link{
&:hover{
text-decoration: none;
}
}

.footer--social-icons{
a{
display: inline-block;
Expand Down
5 changes: 5 additions & 0 deletions documentation/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ you go to the Gallery page in WordPress and add images/items as you see fit.
## Our Work Sliders
Per our pre-project planning, Our Work sliders are also individually managed and adding items
to each page/slider as needed.

## Solutions Single Grid
On the solutions single page, the grid is populated by slug, matching posts from
"Our Work" matching that category. For instance: /printing/ matches to Our Work posts
categorized as 'printing'.
18 changes: 10 additions & 8 deletions footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,16 @@
</div>
<div class="col-4 sm-col-6 footer--address sm-text-left">

<div itemscope itemtype="http://schema.org/ContactPoint">
<div itemscope itemtype="schema.org/PostalAddress">
<span itemprop="streetAddress"><?php the_field('street_address', 'option');?></span>
<span itemprop="addressLocality"><?php the_field('city', 'option');?>,</span>
<span itemprop="addressRegion"> <?php the_field('state', 'option');?></span>
<span itemprop="postalCode"><?php the_field('zip_code', 'option');?></span>
</div>
</div>
<a href="<?php the_field('google_maps_link', 'option');?>" class="google-map-link">
<div itemscope itemtype="http://schema.org/ContactPoint">
<div itemscope itemtype="schema.org/PostalAddress">
<span itemprop="streetAddress"><?php the_field('street_address', 'option');?></span>
<span itemprop="addressLocality"><?php the_field('city', 'option');?>,</span>
<span itemprop="addressRegion"> <?php the_field('state', 'option');?></span>
<span itemprop="postalCode"><?php the_field('zip_code', 'option');?></span>
</div>
</div>
</a>

<span>
<strong>
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

define('PRELUDE_VERSION', '0.1.15');
define('PRELUDE_VERSION', '0.1.16');

if ( !function_exists( 'prelude_features' ) ) {

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oneil",
"version": "0.1.15",
"version": "0.1.16",
"description": "A custom WordPress theme for O'neil Printing",
"main": "index.php",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Theme URI:
Author: Factor1
Author URI: http://factor1studios.com
Description: A custom WordPress theme for O'Neil Printing designed by Rule29 and developed by Factor1.
Version: 0.1.15
Version: 0.1.16
*/

0 comments on commit 30698d9

Please sign in to comment.