Updated README

This commit is contained in:
Pedro Reis 2015-10-20 13:21:57 +01:00
parent 194fc42be3
commit b6cb3bf3e6
5 changed files with 57 additions and 8 deletions

View File

@ -11,7 +11,7 @@ A lightweight and skeletal WordPress boilerplate theme for HTML5 and beyond. The
* Comes pre-bundled with cached CDN version of jQuery * Comes pre-bundled with cached CDN version of jQuery
* jQuery plugin agnostic * jQuery plugin agnostic
* Laravel Elixir to define/customize and run basic Gulp tasks * Laravel Elixir to define/customize and run basic Gulp tasks
* Basic index.php Loop template * Basic template files
* Customised functions.php adding theme support for high customisation * Customised functions.php adding theme support for high customisation
* Minimised HTTP requests for high Web Performance * Minimised HTTP requests for high Web Performance
* Localised strings for multiple language support * Localised strings for multiple language support
@ -24,7 +24,7 @@ Clone the barebones repositories into your WordPress /wp-content/themes/ directo
git clone https://github.com/benchmarkstudios/barebones git clone https://github.com/benchmarkstudios/barebones
cd barebones cd barebones
To include all its optional submodules ([Simple Grid](https://github.com/pdcreis/simple-grid) included): To include all its optional submodules ([Simple Grid](https://github.com/benchmarkstudios/simple-grid) included):
git submodule init git submodule init
git submodule update git submodule update

View File

@ -8,9 +8,9 @@
<article <?php post_class(); ?>> <article <?php post_class(); ?>>
<header class="post__header" role="heading"> <header class="post__header" role="heading">
<h3 class="post__header__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <h3 class="post__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<p class="post__header__date"><time><?php echo human_time_diff( strtotime( $post->post_date ) ) . ' ' . __( 'ago' ); ?></time></p> <p class="post__date"><time><?php echo human_time_diff( strtotime( $post->post_date ) ) . ' ' . __( 'ago' ); ?></time></p>
<p class="post__header__comments"><?php comments_popup_link( __( 'No comments yet' ), __( '1 comment' ), __( '% comments' ) ); ?></p> <p class="post__comments"><?php comments_popup_link( __( 'No comments yet' ), __( '1 comment' ), __( '% comments' ) ); ?></p>
</header> </header>
<?php the_content( __( 'Read More' ) ); ?> <?php the_content( __( 'Read More' ) ); ?>

23
page.php Normal file
View File

@ -0,0 +1,23 @@
<?php get_header(); ?>
<main class="main" role="main">
<div class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?>>
<header role="heading">
<h3 class="post__title"><?php the_title(); ?></h3>
</header>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
</div>
</main>
<?php get_footer(); ?>

28
single.php Normal file
View File

@ -0,0 +1,28 @@
<?php get_header(); ?>
<main class="main" role="main">
<div class="container">
<?php while ( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?>>
<header class="post__header" role="heading">
<h3 class="post__title"><?php the_title(); ?></h3>
</header>
<?php the_content(); ?>
<footer class="post__footer">
<p class="post__date"><time><?php echo human_time_diff( strtotime( $post->post_date ) ) . ' ' . __( 'ago' ); ?></time></p>
<p class="post__comments"><?php comments_popup_link( __( 'No comments yet' ), __( '1 comment' ), __( '% comments' ) ); ?></p>
</footer>
</article>
<?php endwhile; ?>
</div>
</main>
<?php get_footer(); ?>

View File

@ -16,9 +16,7 @@
<article <?php post_class(); ?>> <article <?php post_class(); ?>>
<header role="heading"> <header role="heading">
<h3 class="post__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <h3 class="post__title"><?php the_title(); ?></h3>
<p class="post__date"><time><?php echo human_time_diff( strtotime( $post->post_date ) ) . ' ' . __( 'ago' ); ?></time></p>
<p class="post__comments"><?php comments_popup_link( __( 'No comments yet' ), __( '1 comment' ), __( '% comments' ) ); ?></p>
</header> </header>
<?php the_content(); ?> <?php the_content(); ?>