From 4df37cd29b4c617172b4fec254046f37644a0fef Mon Sep 17 00:00:00 2001 From: John Bintz Date: Fri, 24 Jul 2009 13:34:57 -0400 Subject: [PATCH] working on reworking pages --- links.php | 38 ++++---- page.php | 41 ++++----- partials/page-post.inc | 11 +++ partials/search-comic-post.inc | 4 +- partials/search-transcript-comic-post.inc | 10 ++ partials/search-transcript-not-found.inc | 7 ++ partials/search-transcript-results-count.inc | 7 ++ search-transcript.php | 96 ++++++-------------- search.php | 46 +++++----- 9 files changed, 126 insertions(+), 134 deletions(-) create mode 100644 partials/page-post.inc create mode 100644 partials/search-transcript-comic-post.inc create mode 100644 partials/search-transcript-not-found.inc create mode 100644 partials/search-transcript-results-count.inc diff --git a/links.php b/links.php index b84b440..c9fee91 100644 --- a/links.php +++ b/links.php @@ -2,24 +2,26 @@ /* Template Name: Links */ + +global $comicpress; + +comicpress_init(); + +ob_start(); + ?> - - - -
- -
-
-

-
    - -
-
-
-
-
+
+
+

+
    + +
+
- - +
+ \ No newline at end of file +$content = ob_get_clean(); + +include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']); +?> \ No newline at end of file diff --git a/page.php b/page.php index 91fb57c..d60555a 100644 --- a/page.php +++ b/page.php @@ -1,22 +1,19 @@ - - -
- -
-
-

-
- - '

Pages: ', 'after' => '

', 'next_or_number' => 'number')) ?> -
- ', '

') ?> -
-
-
- - -
- - - - \ No newline at end of file +comicpress_options['layout']); +?> \ No newline at end of file diff --git a/partials/page-post.inc b/partials/page-post.inc new file mode 100644 index 0000000..51f8311 --- /dev/null +++ b/partials/page-post.inc @@ -0,0 +1,11 @@ +
+
+

+
+ + '

Pages: ', 'after' => '

', 'next_or_number' => 'number')) ?> +
+ ', '

') ?> +
+
+
diff --git a/partials/search-comic-post.inc b/partials/search-comic-post.inc index 9506a51..2b7d85f 100644 --- a/partials/search-comic-post.inc +++ b/partials/search-comic-post.inc @@ -1,7 +1,7 @@
-
- Click for full size.
+
diff --git a/partials/search-transcript-comic-post.inc b/partials/search-transcript-comic-post.inc new file mode 100644 index 0000000..84b118b --- /dev/null +++ b/partials/search-transcript-comic-post.inc @@ -0,0 +1,10 @@ +
+
+
+ <?php the_title() ?>
+

+
+
+
+
+
diff --git a/partials/search-transcript-not-found.inc b/partials/search-transcript-not-found.inc new file mode 100644 index 0000000..0e6dacd --- /dev/null +++ b/partials/search-transcript-not-found.inc @@ -0,0 +1,7 @@ + + + diff --git a/partials/search-transcript-results-count.inc b/partials/search-transcript-results-count.inc new file mode 100644 index 0000000..8a469ba --- /dev/null +++ b/partials/search-transcript-results-count.inc @@ -0,0 +1,7 @@ +
+
+ post_count; ?> +

Transcript search for ‘

+ Found result. +
+
diff --git a/search-transcript.php b/search-transcript.php index 67b0dc5..84c1c33 100644 --- a/search-transcript.php +++ b/search-transcript.php @@ -1,74 +1,32 @@ - + + comicpress_init(); -
-
- post_count; - ?> -

Transcript search for ‘

- Found result. -
-
+ ob_start(); + + include_partial('search-transcript-results-count'); + + if (have_posts()) { + query_posts($query_string.'&order=asc'); + + while (have_posts()) { + the_post(); - + if (in_comic_category()) { + include_partial('search-transcript-comic-post', 'search-comic-post', 'archive-comic-post'); + } else { + include_partial('search-transcript-blog-post', 'search-blog-post', 'archive-blog-post'); + } + } + + include_partial('search-transcript-page-nav', 'search-page-nav', 'archive-page-nav'); - + } else { + include_partial('search-transcript-not-found'); + } - - -
-
-
- <?php the_title() ?>
-

-
-
-
-
-
- - - -
-
-

- - -
-
-
- - - - - - - - - - - -
-
-

No transcripts found.

-

Try another search?

-

-
-
-
- - - -
- - - - \ No newline at end of file + $content = ob_get_clean(); + + include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']); +?> diff --git a/search.php b/search.php index f4511a7..d876abb 100644 --- a/search.php +++ b/search.php @@ -1,29 +1,29 @@ - + - -
+ + include_partial('search-page-nav', 'archive-page-nav'); + } else { + include_partial('search-not-found'); + } - - - \ No newline at end of file + $content = ob_get_clean(); + + include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']); +?> \ No newline at end of file