Skip to content
This repository has been archived by the owner on Sep 11, 2020. It is now read-only.

Commit

Permalink
1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thanhluu committed Feb 3, 2015
1 parent 08f697f commit cd65e74
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 19 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
1.5.4
=====

* Tweak: Footer Credit Link
* Tweak: Code Spacing

1.5.3
=====

* Tweak: Using the_posts_pagination() and the_post_navination() to display Pagging & Navigation
* Tweak: Google Fonts URL
* Tweak: Correct file inclusion in functions.php
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Flat

[![Travis CI Build Status](https://travis-ci.org/yoarts/flat.svg?branch=master)](https://travis-ci.org/yoarts/flat)
[![Travis CI Build Status](https://travis-ci.org/yoarts/flat.svg?branch=master)](https://travis-ci.org/yoarts/flat) [![devDependency Status](https://david-dm.org/yoarts/flat/dev-status.svg)](https://david-dm.org/yoarts/flat#info=devDependencies)
* Author: YoArts
* Author URL: http://www.yoarts.com
* Contributer: @yoarts, @ghost, @ashfame, @kevinpapst, @abovethewater
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flat",
"version": "1.5.3",
"version": "1.5.4",
"homepage": "http://www.yoarts.com",
"authors": [
"Thanh Luu <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion dist/archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php the_posts_pagination ( array( 'prev_text' => __( '<i class="fa fa-chevron-left"></i>', 'flat' ), 'next_text' => __( '<i class="fa fa-chevron-right"></i>', 'flat' ) ) ); ?>
<?php the_posts_pagination( array( 'prev_text' => __( '<i class="fa fa-chevron-left"></i>', 'flat' ), 'next_text' => __( '<i class="fa fa-chevron-right"></i>', 'flat' ) ) ); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion dist/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<footer class="site-info">
<?php do_action( 'flat_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'flat' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'flat' ); ?>"><?php printf( __( 'Proudly powered by %s', 'flat' ), 'WordPress' ); ?></a>.
<?php printf( __( 'Theme: %1$s %2$s by %3$s.', 'flat' ), 'Flat', wp_get_theme()->get( 'Version' ), '<a href="'.esc_url( 'http://www.yoarts.com/' ).'" title="'.esc_attr( 'Webmaster Tutorials & Resources' ).'">YoArts</a>' ); ?>
<?php printf( __( 'Theme: %1$s %2$s by %3$s.', 'flat' ), 'Flat', wp_get_theme()->get( 'Version' ), '<a href="'.esc_url( 'http://www.yoarts.com/blog/wordpress/free-flat-design-wordpress-theme.html' ).'" title="'.esc_attr( 'Flat WordPress Theme' ).'">YoArts</a>' ); ?>
</footer>
<?php endif; ?>
</div>
Expand Down
4 changes: 2 additions & 2 deletions dist/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function flat_scripts_styles() {
wp_enqueue_script( 'comment-reply' );
}

if ( defined( 'WP_ENV' ) && WP_ENV === 'development' ) {
if ( defined( 'WP_ENV' ) && 'development' === WP_ENV ) {
$assets = array(
'css' => '/assets/css/flat.css',
'js' => '/assets/js/flat.js',
Expand Down Expand Up @@ -110,4 +110,4 @@ function flat_entry_meta( $show_sep = true ) {
comments_popup_link( __( '0 Comments', 'flat' ), __( '1 Comment', 'flat' ), __( '% Comments', 'flat' ) );
echo '</span>';
}
endif;
endif;
2 changes: 1 addition & 1 deletion dist/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php the_posts_pagination ( array( 'prev_text' => __( '<i class="fa fa-chevron-left"></i>', 'flat' ), 'next_text' => __( '<i class="fa fa-chevron-right"></i>', 'flat' ) ) ); ?>
<?php the_posts_pagination( array( 'prev_text' => __( '<i class="fa fa-chevron-left"></i>', 'flat' ), 'next_text' => __( '<i class="fa fa-chevron-right"></i>', 'flat' ) ) ); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://www.yoarts.com/wordpress/free-flat-design-wordpress-theme.html
Author: YoArts
Author URI: http://www.yoarts.com/
Description: Flat is a WordPress Blog Theme designed by YoArts. We would like to say that Flat is both beautiful and charming at the same time.
Version: 1.5.3
Version: 1.5.4
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: flat
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flat",
"version": "1.5.3",
"version": "1.5.4",
"author": "Thanh Luu <[email protected]>",
"homepage": "http://www.yoarts.com",
"repository": {
Expand All @@ -23,18 +23,18 @@
"node": ">= 0.10.0"
},
"devDependencies": {
"bower": ">=1.3.9",
"bower": ">=1.3.12",
"grunt": "~0.4.5",
"grunt-autoprefixer": "~0.8.1",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-less": "~0.11.3",
"grunt-contrib-uglify": "~0.5.0",
"grunt-autoprefixer": "~2.2.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-less": "~1.0.0",
"grunt-contrib-uglify": "~0.7.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-compress": "~0.12.0",
"grunt-modernizr": "~0.5.2",
"grunt-contrib-compress": "~0.13.0",
"grunt-modernizr": "~0.6.0",
"grunt-wp-assets": "~0.2.6",
"load-grunt-tasks": "~0.6.0",
"time-grunt": "~0.3.2"
"load-grunt-tasks": "~3.1.0",
"time-grunt": "~1.0.0"
}
}

0 comments on commit cd65e74

Please sign in to comment.