Skip to content

Commit

Permalink
Merge branch 'GavernWP-v.1.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
dziudek committed Aug 8, 2013
2 parents 2c0c30b + b8407c4 commit f561e13
Show file tree
Hide file tree
Showing 52 changed files with 2,672 additions and 1,987 deletions.
2 changes: 1 addition & 1 deletion MeetGavernWP/attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>

<?php comments_template('', true); ?>
Expand Down
6 changes: 3 additions & 3 deletions MeetGavernWP/content-aside.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="aside">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -34,5 +34,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-audio.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>
<header class="audio">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -33,5 +33,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-chat.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>
<header class="chat">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -33,5 +33,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-gallery.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="gallery">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand Down Expand Up @@ -65,5 +65,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-image.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>
<header class="image">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -33,5 +33,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-link.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="link">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if(is_search() || is_archive() || is_tag()) : ?>
<section class="summary">
Expand All @@ -32,5 +32,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
<article id="post-<?php the_ID(); ?>" <?php post_class($classname); ?>>
<?php if($show_title) : ?>
<header>
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<section class="content">
<?php the_content(); ?>
Expand All @@ -42,5 +42,5 @@
<?php gk_post_links(); ?>
</section>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-quote.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="quote">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -34,5 +34,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-single.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(is_page_template('template.fullwidth.php') ? ' page-fullwidth' : null); ?>>
<header>
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<section class="content">
<?php the_content(); ?>
Expand All @@ -24,5 +24,5 @@
<?php gk_post_links(); ?>
</section>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="status">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if (is_search() || is_archive() || is_tag()) : ?>
<section class="summary">
Expand All @@ -34,5 +34,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content-video.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'indexed' ); ?>>
<header class="video">
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<section class="summary">
<?php the_excerpt(); ?>
Expand All @@ -33,5 +33,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
6 changes: 3 additions & 3 deletions MeetGavernWP/content.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<?php include(gavern_file('layouts/content.post.header.php')); ?>
<?php get_template_part( 'layouts/content.post.header' ); ?>
</header>

<?php include(gavern_file('layouts/content.post.featured.php')); ?>
<?php get_template_part( 'layouts/content.post.featured' ); ?>

<?php if ( is_search() || is_archive() || is_tag() ) : ?>
<section class="summary">
Expand All @@ -30,5 +30,5 @@
</section>
<?php endif; ?>

<?php include(gavern_file('layouts/content.post.footer.php')); ?>
<?php get_template_part( 'layouts/content.post.footer' ); ?>
</article>
34 changes: 31 additions & 3 deletions MeetGavernWP/css/back-end/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,15 @@ textarea {
.gkWrap > h1:first-child small {
border-left: 1px solid #fff;
float: left;
font-size: 10px;
font-size: 11px;
font-weight: 400;
line-height: 26px;
margin: 4px 0 0 24px;
line-height: 15px;
margin: 1px 0 0 24px;
padding-left: 16px
}
.gkWrap > h1:first-child small span {
display: block;
}
.gkWrap > h1:first-child a {
background: url(../../images/back-end/icons.png) no-repeat 0 -640px;
display: block;
Expand Down Expand Up @@ -382,6 +385,31 @@ p[data-visible="false"] {
cursor: pointer;
}

/* Social Media */
#gkSocial {
float: right;
line-height: 1.0;
margin: 7px 24px 0 0;
}

#gkSocial > span {
display: block;
float: left;
font-size: 12px;
margin: 4px 10px 0 0;
}

@media (max-width: 1200px) {
#gkSocial {
clear: both;
float: left;
}

.gkWrap > h1:first-child {
height: 72px;
}
}

/* width <= 720px */
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) and (-moz-max-device-pixel-ratio: 1.5), only screen and (max-device-width: 900px) and (-o-max-device-pixel-ratio: 1.5/1), only screen and (max-device-width: 900px) and (-webkit-max-device-pixel-ratio: 1.5), only screen and (max-device-width: 900px) and (max-device-pixel-ratio: 1.5), only screen and (max-device-width: 1800px) and (-moz-min-device-pixel-ratio: 2), only screen and (max-device-width: 1800px) and (-o-min-device-pixel-ratio: 2/1), only screen and (max-device-width: 1800px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-device-width: 1800px) and (min-device-pixel-ratio: 2) {
#gkTabs {
Expand Down
2 changes: 1 addition & 1 deletion MeetGavernWP/css/font-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@font-face {
font-family: 'FontAwesome';
src: url('font-awesome/fontawesome-webfont.eot?v=3.2.1');
src: url('font-awesome/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('font-awesome/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('font-awesome/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
src: url('font-awesome/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('font-awesome/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('font-awesome/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('font-awesome/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down
14 changes: 7 additions & 7 deletions MeetGavernWP/css/shortcodes.elements.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
margin: 10px 0;
min-height: 16px;
overflow: hidden;
padding: 10px 15px;
padding: 15px 20px;
position: relative;
}

Expand All @@ -94,20 +94,20 @@

.gk-toggle.opened > h3:after,
.gk-toggle.closed > h3:after {
background: transparent url('../images/toggler.png') no-repeat 0 0;
content: " ";
content: "\f056";
color: #dd5749;
cursor: pointer;
display: block;
height: 21px;
line-height: 21px;
font-family: FontAwesome;
font-size: 21px;
position: absolute;
right: 0;
top: 8px;
width: 21px;
}

.gk-toggle.closed > h3:after {
background: transparent url('../images/toggler.png') no-repeat 0 -40px;
content: "\f055";
}

.gk-toggle > h3 {
Expand All @@ -117,7 +117,7 @@
font-size: 16px;
line-height: 17px;
margin: -10px 0;
padding: 10px 0;
padding: 10px 0 15px;
position: relative;
z-index: 1;
}
Expand Down
5 changes: 5 additions & 0 deletions MeetGavernWP/css/tablet.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@
border-top: none!important;
}

#main-menu > li.haschild:after,
#main-menu > li li.haschild:after {
display: none!important;
}

/* 10.5. Footer
==================================== */

Expand Down
Loading

0 comments on commit f561e13

Please sign in to comment.