compass-wp 0.0.0 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/templates/base/404.php +23 -0
- data/templates/base/_LICENSE.txt +281 -0
- data/templates/base/_READ_ME.txt +81 -0
- data/templates/base/_base.scss +1 -0
- data/templates/base/archive.php +55 -0
- data/templates/base/attachment.php +98 -0
- data/templates/base/author.php +51 -0
- data/templates/base/category.php +28 -0
- data/templates/base/comments.php +72 -0
- data/templates/base/editor-style.css +289 -0
- data/templates/base/footer.php +33 -0
- data/templates/base/footer.scss +1 -0
- data/templates/base/functions.php +499 -0
- data/templates/base/header.php +55 -0
- data/templates/base/header.scss +1 -0
- data/templates/base/images/headers/starkers-thumbnail.png +0 -0
- data/templates/base/images/headers/starkers.png +0 -0
- data/templates/base/images/wordpress.png +0 -0
- data/templates/base/index.php +27 -0
- data/templates/base/loop.php +135 -0
- data/templates/base/manifest.rb +27 -0
- data/templates/base/navigation.scss +1 -0
- data/templates/base/onecolumn-page.php +28 -0
- data/templates/base/page.php +34 -0
- data/templates/base/screenshot.png +0 -0
- data/templates/base/search.php +28 -0
- data/templates/base/sidebar-footer.php +48 -0
- data/templates/base/sidebar.php +52 -0
- data/templates/base/single.php +44 -0
- data/templates/base/style.css +11 -0
- data/templates/base/style.scss +4 -0
- data/templates/base/tag.php +25 -0
- metadata +35 -3
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The Template for displaying all single posts.
|
|
4
|
+
*
|
|
5
|
+
* @package WordPress
|
|
6
|
+
* @subpackage Starkers
|
|
7
|
+
* @since Starkers 3.0
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
get_header(); ?>
|
|
11
|
+
|
|
12
|
+
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
|
13
|
+
|
|
14
|
+
<?php previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
|
|
15
|
+
<?php next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
|
|
16
|
+
|
|
17
|
+
<h1><?php the_title(); ?></h1>
|
|
18
|
+
|
|
19
|
+
<?php twentyten_posted_on(); ?>
|
|
20
|
+
|
|
21
|
+
<?php the_content(); ?>
|
|
22
|
+
<?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'twentyten' ), 'after' => '' ) ); ?>
|
|
23
|
+
|
|
24
|
+
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
|
|
25
|
+
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
|
|
26
|
+
<h2><?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
|
|
27
|
+
<?php the_author_meta( 'description' ); ?>
|
|
28
|
+
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
|
|
29
|
+
<?php printf( __( 'View all posts by %s →', 'twentyten' ), get_the_author() ); ?>
|
|
30
|
+
</a>
|
|
31
|
+
<?php endif; ?>
|
|
32
|
+
|
|
33
|
+
<?php twentyten_posted_in(); ?>
|
|
34
|
+
<?php edit_post_link( __( 'Edit', 'twentyten' ), '', '' ); ?>
|
|
35
|
+
|
|
36
|
+
<?php previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
|
|
37
|
+
<?php next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
|
|
38
|
+
|
|
39
|
+
<?php comments_template( '', true ); ?>
|
|
40
|
+
|
|
41
|
+
<?php endwhile; // end of the loop. ?>
|
|
42
|
+
|
|
43
|
+
<?php get_sidebar(); ?>
|
|
44
|
+
<?php get_footer(); ?>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Theme Name: Starkers
|
|
3
|
+
Theme URI: http://elliotjaystocks.com
|
|
4
|
+
Description: The totally nude Wordpress theme. Phwoar! (Based on Twenty Ten)
|
|
5
|
+
Version: 3.0
|
|
6
|
+
Author: Elliot Jay Stocks
|
|
7
|
+
Author URI: http://elliotjaystocks.com
|
|
8
|
+
Tags: starkers, naked, clean, basic
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
@import "css/style.css";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/**
|
|
3
|
+
* The template for displaying Tag Archive pages.
|
|
4
|
+
*
|
|
5
|
+
* @package WordPress
|
|
6
|
+
* @subpackage Starkers
|
|
7
|
+
* @since Starkers 3.0
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
get_header(); ?>
|
|
11
|
+
|
|
12
|
+
<h1><?php
|
|
13
|
+
printf( __( 'Tag Archives: %s', 'twentyten' ), '' . single_tag_title( '', false ) . '' );
|
|
14
|
+
?></h1>
|
|
15
|
+
|
|
16
|
+
<?php
|
|
17
|
+
/* Run the loop for the tag archive to output the posts
|
|
18
|
+
* If you want to overload this in a child theme then include a file
|
|
19
|
+
* called loop-tag.php and that will be used instead.
|
|
20
|
+
*/
|
|
21
|
+
get_template_part( 'loop', 'tag' );
|
|
22
|
+
?>
|
|
23
|
+
|
|
24
|
+
<?php get_sidebar(); ?>
|
|
25
|
+
<?php get_footer(); ?>
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compass-wp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
+
- 1
|
|
8
9
|
- 0
|
|
9
|
-
|
|
10
|
-
version: 0.0.0
|
|
10
|
+
version: 0.1.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Devon Humes
|
|
@@ -34,6 +34,38 @@ files:
|
|
|
34
34
|
- Rakefile
|
|
35
35
|
- VERSION
|
|
36
36
|
- lib/compass-wp.rb
|
|
37
|
+
- templates/base/404.php
|
|
38
|
+
- templates/base/_LICENSE.txt
|
|
39
|
+
- templates/base/_READ_ME.txt
|
|
40
|
+
- templates/base/_base.scss
|
|
41
|
+
- templates/base/archive.php
|
|
42
|
+
- templates/base/attachment.php
|
|
43
|
+
- templates/base/author.php
|
|
44
|
+
- templates/base/category.php
|
|
45
|
+
- templates/base/comments.php
|
|
46
|
+
- templates/base/editor-style.css
|
|
47
|
+
- templates/base/footer.php
|
|
48
|
+
- templates/base/footer.scss
|
|
49
|
+
- templates/base/functions.php
|
|
50
|
+
- templates/base/header.php
|
|
51
|
+
- templates/base/header.scss
|
|
52
|
+
- templates/base/images/headers/starkers-thumbnail.png
|
|
53
|
+
- templates/base/images/headers/starkers.png
|
|
54
|
+
- templates/base/images/wordpress.png
|
|
55
|
+
- templates/base/index.php
|
|
56
|
+
- templates/base/loop.php
|
|
57
|
+
- templates/base/manifest.rb
|
|
58
|
+
- templates/base/navigation.scss
|
|
59
|
+
- templates/base/onecolumn-page.php
|
|
60
|
+
- templates/base/page.php
|
|
61
|
+
- templates/base/screenshot.png
|
|
62
|
+
- templates/base/search.php
|
|
63
|
+
- templates/base/sidebar-footer.php
|
|
64
|
+
- templates/base/sidebar.php
|
|
65
|
+
- templates/base/single.php
|
|
66
|
+
- templates/base/style.css
|
|
67
|
+
- templates/base/style.scss
|
|
68
|
+
- templates/base/tag.php
|
|
37
69
|
- templates/project/manifest.rb
|
|
38
70
|
- templates/project/screen.scss
|
|
39
71
|
homepage: http://github.com/devonhumes/compass-wp
|