Skip to content

Commit

Permalink
1.2.1 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaiz committed May 15, 2018
1 parent 900391a commit ed6f20c
Show file tree
Hide file tree
Showing 7 changed files with 853 additions and 927 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ <h1 id="platethemechangeloghistory">Plate Theme Change Log + History</h1>

<hr />

<h3 id="1.2.12018-05-14">1.2.1 2018&#8211;05&#8211;14</h3>

<ul>
<li>Formatting fixes in 768up.scss</li>
<li>updated screenshot images</li>
<li>removed errant <code>cf</code> class from page-custom-loop.php</li>
<li>fixed an issue where I accidentally listened to a commercial</li>
</ul>

<h3 id="1.2.02018-04-30">1.2.0 2018&#8211;04&#8211;30</h3>

<h3 id="majorupdatetocssgrid">Major update to CSS Grid!</h3>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Author: Joshua Michaels for studio.bio with help from Jon Iler

*******************************************************************

### 1.2.1 2018-05-14
- Formatting fixes in 768up.scss
- updated screenshot images
- removed errant `cf` class from page-custom-loop.php
- fixed an issue where I accidentally listened to a commercial

### 1.2.0 2018-04-30
### Major update to CSS Grid!
*Note: you should not pull these changes down if you use the old-style grid from v1.1.8 and before as it might break things. Try on a test site first.*
Expand Down
35 changes: 0 additions & 35 deletions library/css/ie.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion library/css/ie.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 0 additions & 69 deletions library/scss/breakpoints/_768up.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,110 +172,41 @@ so we've copied them here.
*/

.rtl {}

/* for sites that are read right to left (i.e. hebrew) */
.home {}

/* home page */
.blog {}

/* blog template page */
.archive {}

/* archive page */
.date {}

/* date archive page */
.date-paged-1 {}

/* replace the number to the corresponding page number */
.search {}

/* search page */
.search-results {}

/* search result page */
.search-no-results {}

/* no results search page */
.search-paged-1 {}

/* individual paged search (i.e. body.search-paged-3) */
.error404 {}

/* 404 page */
.single {}

/* single post page */
.postid-1 {}

/* individual post page by id (i.e. body.postid-73) */
.single-paged-1 {}

/* individual paged single (i.e. body.single-paged-3) */
.attachment {}

/* attatchment page */
.attachmentid-1 {}

/* individual attatchment page (i.e. body.attachmentid-763) */
.attachment-mime-type {}

/* style mime type pages */
.author {}

/* author page */
.author-nicename {}

/* user nicename (i.e. body.author-samueladams) */
.author-paged-1 {}

/* paged author archives (i.e. body.author-paged-4) for page 4 */
.category {}

/* category page */
.category-1 {}

/* individual category page (i.e. body.category-6) */
.category-paged-1 {}

/* replace the number to the corresponding page number */
.tag {}

/* tag page */
.tag-slug {}

/* individual tag page (i.e. body.tag-news) */
.tag-paged-1 {}

/* replace the number to the corresponding page number */
.page-template {}

/* custom page template page */
.page-template-page-php {}

/* individual page template (i.e. body.page-template-contact-php */
.page-paged-1 {}

/* replace the number to the corresponding page number */
.page-parent {}

/* parent page template */
.page-child {}

/* child page template */
.parent-pageid-1 {}

/* replace the number to the corresponding page number */
.logged-in {}

/* if user is logged in */
.paged {}

/* paged items like search results or archives */
.paged-1 {}

/* individual paged (i.e. body.paged-3) */

/*********************
SIDEBARS & ASIDES
Expand Down
2 changes: 1 addition & 1 deletion page-custom-loop.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class( 'cf' ); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">

<header class="article-header">

Expand Down
Loading

0 comments on commit ed6f20c

Please sign in to comment.