Template Added
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 157 B After Width: | Height: | Size: 157 B |
Before Width: | Height: | Size: 116 B After Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 113 B After Width: | Height: | Size: 113 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 179 B After Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 994 B After Width: | Height: | Size: 994 B |
Before Width: | Height: | Size: 767 B After Width: | Height: | Size: 767 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 399 B |
48
themes/myMap/404.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying 404 pages (Not Found).
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<article id="post-0" class="post error404 not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php _e( 'This is somewhat embarrassing, isn’t it?', 'mymap' ); ?></h1>
|
||||
</header>
|
||||
|
||||
<div class="entry-content">
|
||||
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching, or one of the links below, can help.', 'mymap' ); ?></p>
|
||||
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php the_widget( 'WP_Widget_Recent_Posts', array( 'number' => 10 ), array( 'widget_id' => '404' ) ); ?>
|
||||
|
||||
<div class="widget">
|
||||
<h2 class="widgettitle"><?php _e( 'Most Used Categories', 'mymap' ); ?></h2>
|
||||
<ul>
|
||||
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
/* translators: %1$s: smilie */
|
||||
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'mymap' ), convert_smilies( ':)' ) ) . '</p>';
|
||||
the_widget( 'WP_Widget_Archives', array('count' => 0 , 'dropdown' => 1 ), array( 'after_title' => '</h2>'.$archive_content ) );
|
||||
?>
|
||||
|
||||
<?php the_widget( 'WP_Widget_Tag_Cloud' ); ?>
|
||||
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_footer(); ?>
|
64
themes/myMap/category.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying Category Archive pages.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<div id="main">
|
||||
<section id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php
|
||||
printf( __( 'Category Archives: %s', 'mymap' ), '<span>' . single_cat_title( '', false ) . '</span>' );
|
||||
?></h1>
|
||||
|
||||
<?php
|
||||
$category_description = category_description();
|
||||
if ( ! empty( $category_description ) )
|
||||
echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );
|
||||
?>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
/* Include the Post-Format-specific template for the content.
|
||||
* If you want to overload this in a child theme then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<article id="post-0" class="post no-results not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php _e( 'Nothing Found', 'mymap' ); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mymap' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
77
themes/myMap/comments.php
Normal file
@ -0,0 +1,77 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying Comments.
|
||||
*
|
||||
* The area of the page that contains both current comments
|
||||
* and the comment form. The actual display of comments is
|
||||
* handled by a callback to mymap_comment() which is
|
||||
* located in the functions.php file.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
<div id="comments">
|
||||
<?php if ( post_password_required() ) : ?>
|
||||
<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'mymap' ); ?></p>
|
||||
</div><!-- #comments -->
|
||||
<?php
|
||||
/* Stop the rest of comments.php from being processed,
|
||||
* but don't kill the script entirely -- we still have
|
||||
* to fully load the template.
|
||||
*/
|
||||
return;
|
||||
endif;
|
||||
?>
|
||||
|
||||
<?php // You can start editing here -- including this comment! ?>
|
||||
|
||||
<?php if ( have_comments() ) : ?>
|
||||
<h2 id="comments-title">
|
||||
<?php
|
||||
printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'mymap' ),
|
||||
number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
|
||||
?>
|
||||
</h2>
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav id="comment-nav-above">
|
||||
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'mymap' ); ?></h1>
|
||||
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'mymap' ) ); ?></div>
|
||||
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'mymap' ) ); ?></div>
|
||||
</nav>
|
||||
<?php endif; // check for comment navigation ?>
|
||||
|
||||
<ol class="commentlist">
|
||||
<?php
|
||||
/* Loop through and list the comments. Tell wp_list_comments()
|
||||
* to use mymap_comment() to format the comments.
|
||||
* If you want to overload this in a child theme then you can
|
||||
* define mymap_comment() and that will be used instead.
|
||||
* See mymap_comment() in mymap/functions.php for more.
|
||||
*/
|
||||
wp_list_comments();
|
||||
?>
|
||||
</ol>
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav id="comment-nav-below">
|
||||
<h1 class="assistive-text"><?php _e( 'Comment navigation', 'mymap' ); ?></h1>
|
||||
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'mymap' ) ); ?></div>
|
||||
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'mymap' ) ); ?></div>
|
||||
</nav>
|
||||
<?php endif; // check for comment navigation ?>
|
||||
|
||||
<?php
|
||||
/* If there are no comments and comments are closed, let's leave a little note, shall we?
|
||||
* But we don't want the note on pages or post types that do not support comments.
|
||||
*/
|
||||
elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) :
|
||||
?>
|
||||
<p class="nocomments"><?php _e( 'Comments are closed.', 'mymap' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php comment_form(); ?>
|
||||
|
||||
</div><!-- #comments -->
|
43
themes/myMap/content-marker.php
Normal file
@ -0,0 +1,43 @@
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php
|
||||
$id_p = get_the_ID();
|
||||
$aut = get_marker_author($id_p);
|
||||
$dat = get_marker_date($id_p);
|
||||
|
||||
$text = __('<p>Author: %1$s</br>Date: %2$s</p>','mymap');
|
||||
|
||||
printf(
|
||||
$text,
|
||||
$aut,
|
||||
$dat
|
||||
);
|
||||
?>
|
||||
<?php the_player($id_p); ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<?php
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$categories_list = get_the_category_list( __( ', ', 'mymap' ) );
|
||||
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$tag_list = get_the_tag_list( '', __( ', ', 'mymap' ) );
|
||||
$utility_text = __( 'Categories: %1$s<br/>Tags: %2$s</br>', 'mymap' );
|
||||
|
||||
|
||||
printf(
|
||||
$utility_text,
|
||||
$categories_list,
|
||||
$tag_list
|
||||
);
|
||||
?>
|
||||
<?php edit_post_link( __( 'Edit', 'mymap' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
|
||||
</footer><!-- .entry-meta -->
|
||||
</article><!-- #post-<?php the_ID(); ?> -->
|
23
themes/myMap/content-page.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* The template used for displaying page content in page.php
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mymap' ) . '</span>', 'after' => '</div>' ) ); ?>
|
||||
</div><!-- .entry-content -->
|
||||
<footer class="entry-meta">
|
||||
<?php edit_post_link( __( 'Edit', 'mymap' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer><!-- .entry-meta -->
|
||||
</article><!-- #post-<?php the_ID(); ?> -->
|
62
themes/myMap/content-single.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying content in the single.php template
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php the_title(); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mymap' ) . '</span>', 'after' => '</div>' ) ); ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<?php
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$categories_list = get_the_category_list( __( ', ', 'mymap' ) );
|
||||
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$tag_list = get_the_tag_list( '', __( ', ', 'mymap' ) );
|
||||
if ( '' != $tag_list ) {
|
||||
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'mymap' );
|
||||
} elseif ( '' != $categories_list ) {
|
||||
$utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'mymap' );
|
||||
} else {
|
||||
$utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'mymap' );
|
||||
}
|
||||
|
||||
printf(
|
||||
$utility_text,
|
||||
$categories_list,
|
||||
$tag_list,
|
||||
esc_url( get_permalink() ),
|
||||
the_title_attribute( 'echo=0' ),
|
||||
get_the_author(),
|
||||
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) )
|
||||
);
|
||||
?>
|
||||
<?php edit_post_link( __( 'Edit', 'mymap' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
|
||||
<?php if ( get_the_author_meta( 'description' ) && is_multi_author() ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?>
|
||||
<div id="author-info">
|
||||
<div id="author-description">
|
||||
<h2><?php printf( esc_attr__( 'About %s', 'mymap' ), get_the_author() ); ?></h2>
|
||||
<?php the_author_meta( 'description' ); ?>
|
||||
<div id="author-link">
|
||||
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
|
||||
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'mymap' ), get_the_author() ); ?>
|
||||
</a>
|
||||
</div><!-- #author-link -->
|
||||
</div><!-- #author-description -->
|
||||
</div><!-- #entry-author-info -->
|
||||
<?php endif; ?>
|
||||
</footer><!-- .entry-meta -->
|
||||
</article><!-- #post-<?php the_ID(); ?> -->
|
64
themes/myMap/content.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
/**
|
||||
* The default template for displaying content
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<?php if ( is_sticky() ) : ?>
|
||||
<hgroup>
|
||||
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mymap' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
|
||||
<h3 class="entry-format"><?php _e( 'Featured', 'mymap' ); ?></h3>
|
||||
</hgroup>
|
||||
<?php else : ?>
|
||||
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'mymap' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
|
||||
<?php endif; ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'mymap' ) ); ?>
|
||||
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'mymap' ) . '</span>', 'after' => '</div>' ) ); ?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-meta">
|
||||
<?php $show_sep = false; ?>
|
||||
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
|
||||
<?php
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$categories_list = get_the_category_list( __( ', ', 'mymap' ) );
|
||||
if ( $categories_list ):
|
||||
?>
|
||||
<span class="cat-links">
|
||||
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'mymap' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
|
||||
$show_sep = true; ?>
|
||||
</span>
|
||||
<?php endif; // End if categories ?>
|
||||
<?php
|
||||
/* translators: used between list items, there is a space after the comma */
|
||||
$tags_list = get_the_tag_list( '', __( ', ', 'mymap' ) );
|
||||
if ( $tags_list ):
|
||||
if ( $show_sep ) : ?>
|
||||
<span class="sep"> | </span>
|
||||
<?php endif; // End if $show_sep ?>
|
||||
<span class="tag-links">
|
||||
<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'mymap' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
|
||||
$show_sep = true; ?>
|
||||
</span>
|
||||
<?php endif; // End if $tags_list ?>
|
||||
<?php endif; // End if 'post' == get_post_type() ?>
|
||||
|
||||
<?php if ( comments_open() ) : ?>
|
||||
<?php if ( $show_sep ) : ?>
|
||||
<span class="sep"> | </span>
|
||||
<?php endif; // End if $show_sep ?>
|
||||
<span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'mymap' ) . '</span>', __( '<b>1</b> Reply', 'mymap' ), __( '<b>%</b> Replies', 'mymap' ) ); ?></span>
|
||||
<?php endif; // End if comments_open() ?>
|
||||
|
||||
<?php edit_post_link( __( 'Edit', 'mymap' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer><!-- #entry-meta -->
|
||||
</article><!-- #post-<?php the_ID(); ?> -->
|
24
themes/myMap/editor-style-rtl.css
Normal file
@ -0,0 +1,24 @@
|
||||
/*
|
||||
Theme Name: Twenty Eleven
|
||||
*/
|
||||
/*
|
||||
Used to style the TinyMCE editor.
|
||||
*/
|
||||
html .mceContentBody {
|
||||
direction: rtl;
|
||||
unicode-bidi: embed;
|
||||
float: right;
|
||||
max-width: 584px;
|
||||
}
|
||||
* {
|
||||
font-family: Arial, Tahoma, sans-serif;
|
||||
}
|
||||
ul, ol {
|
||||
margin: 0 2.5em 1.625em 0;
|
||||
}
|
||||
blockquote {
|
||||
font-style: normal;
|
||||
}
|
||||
table {
|
||||
text-align: right;
|
||||
}
|
311
themes/myMap/editor-style.css
Normal file
@ -0,0 +1,311 @@
|
||||
/*
|
||||
Theme Name: Twenty Eleven
|
||||
Description: Used to style the TinyMCE editor.
|
||||
*/
|
||||
|
||||
html .mceContentBody {
|
||||
max-width: 584px;
|
||||
}
|
||||
* {
|
||||
color: inherit;
|
||||
font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-style: inherit;
|
||||
font-weight: inherit;
|
||||
line-height: 1.625;
|
||||
}
|
||||
body {
|
||||
color: #333;
|
||||
font: 15px "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
|
||||
font-weight: 300;
|
||||
line-height: 1.625;
|
||||
}
|
||||
|
||||
/* Headings */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
clear: both;
|
||||
}
|
||||
h1,
|
||||
h2 {
|
||||
color: #000;
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
margin: 0 0 .8125em;
|
||||
}
|
||||
h3 {
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.1em;
|
||||
line-height: 2.6em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
h4, h5, h6 {
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
hr {
|
||||
background-color: #ccc;
|
||||
border: 0;
|
||||
height: 1px;
|
||||
margin-bottom: 1.625em;
|
||||
}
|
||||
|
||||
/* Text elements */
|
||||
p, ul, ol, dl {
|
||||
font-weight: 300;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 1.625em;
|
||||
}
|
||||
ul, ol {
|
||||
margin: 0 0 1.625em 2.5em;
|
||||
padding: 0;
|
||||
}
|
||||
ul {
|
||||
list-style: square;
|
||||
}
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
}
|
||||
ol ol {
|
||||
list-style: upper-alpha;
|
||||
}
|
||||
ol ol ol {
|
||||
list-style: lower-roman;
|
||||
}
|
||||
ol ol ol ol {
|
||||
list-style: lower-alpha;
|
||||
}
|
||||
ul ul, ol ol, ul ol, ol ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
dl {
|
||||
margin: 0 1.625em;
|
||||
}
|
||||
dt {
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
}
|
||||
dd {
|
||||
margin: 0 0 1.625em;
|
||||
}
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
cite, em, i {
|
||||
font-style: italic;
|
||||
}
|
||||
cite {
|
||||
border: none;
|
||||
}
|
||||
big {
|
||||
font-size: 131.25%;
|
||||
}
|
||||
.mceContentBody blockquote,
|
||||
.mceContentBody blockquote p {
|
||||
font-family: Georgia, "Bitstream Charter", serif !important;
|
||||
font-style: italic !important;
|
||||
font-weight: normal;
|
||||
margin: 0 3em;
|
||||
}
|
||||
.mceContentBody blockquote em,
|
||||
.mceContentBody blockquote i,
|
||||
.mceContentBody blockquote cite {
|
||||
font-style: normal;
|
||||
}
|
||||
.mceContentBody blockquote cite {
|
||||
color: #666;
|
||||
font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
pre {
|
||||
background: #f4f4f4;
|
||||
font: 13px "Courier 10 Pitch", Courier, monospace;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1.625em;
|
||||
padding: 0.75em 1.625em;
|
||||
}
|
||||
code, kbd, code var {
|
||||
font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||
}
|
||||
abbr, acronym, dfn {
|
||||
border-bottom: 1px dotted #666;
|
||||
cursor: help;
|
||||
}
|
||||
address {
|
||||
display: block;
|
||||
margin: 0 0 1.625em;
|
||||
}
|
||||
del {
|
||||
color: #333;
|
||||
}
|
||||
ins {
|
||||
background: #fff9c0;
|
||||
border: none;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
sup,
|
||||
sub {
|
||||
font-size: 10px;
|
||||
height: 0;
|
||||
line-height: 1;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
sup {
|
||||
bottom: 1ex;
|
||||
}
|
||||
sub {
|
||||
top: .5ex;
|
||||
}
|
||||
input[type=text],
|
||||
textarea {
|
||||
background: #fafafa;
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
border: 1px solid #ddd;
|
||||
color: #888;
|
||||
}
|
||||
input[type=text]:focus,
|
||||
textarea:focus {
|
||||
color: #333;
|
||||
}
|
||||
textarea {
|
||||
padding-left: 3px;
|
||||
width: 98%;
|
||||
}
|
||||
input[type=text] {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a,
|
||||
a em,
|
||||
a strong {
|
||||
color: #1b8be0;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:focus,
|
||||
a:active,
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Alignment */
|
||||
.alignleft {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin-right: 1.625em;
|
||||
}
|
||||
.alignright {
|
||||
display: inline;
|
||||
float: right;
|
||||
margin-left: 1.625em;
|
||||
}
|
||||
.aligncenter {
|
||||
clear: both;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* Tables */
|
||||
table {
|
||||
border: none !important;
|
||||
border-bottom: 1px solid #ddd !important;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
text-align: left;
|
||||
margin: 0 0 1.625em;
|
||||
width: 100%;
|
||||
}
|
||||
tr th {
|
||||
border: none !important;
|
||||
color: #666;
|
||||
font-size: 10px;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.1em;
|
||||
line-height: 2.6em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
td {
|
||||
border: none !important;
|
||||
border-top: 1px solid #ddd !important;
|
||||
padding: 6px 10px 6px 0;
|
||||
}
|
||||
|
||||
/* Images */
|
||||
img[class*="wp-image-"] {
|
||||
height: auto;
|
||||
max-width: 97.5%;
|
||||
}
|
||||
img.size-full {
|
||||
width: auto; /* Prevent stretching of full-size images in IE8 */
|
||||
}
|
||||
img.wp-smiley {
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
padding: 0;
|
||||
}
|
||||
p img,
|
||||
.wp-caption {
|
||||
margin-top: 0.4em;
|
||||
}
|
||||
img {
|
||||
border: 1px solid #ddd;
|
||||
padding: 6px;
|
||||
}
|
||||
img.alignleft,
|
||||
img.alignright,
|
||||
img.aligncenter {
|
||||
margin-bottom: 1.625em;
|
||||
}
|
||||
.wp-caption {
|
||||
background: #eee;
|
||||
border: none;
|
||||
margin-bottom: 1.625em;
|
||||
max-width: 96%;
|
||||
padding: 9px;
|
||||
}
|
||||
.wp-caption img {
|
||||
display: block;
|
||||
margin: 5px auto 0 !important;
|
||||
max-width: 98%;
|
||||
border-color: #eee;
|
||||
}
|
||||
.wp-caption .wp-caption-text,
|
||||
.wp-caption-dd {
|
||||
color: #666;
|
||||
font-family: Georgia, serif !important;
|
||||
font-size: 12px;
|
||||
margin: 0 0 0.6em 0 !important;
|
||||
padding: 0 0 5px 40px;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
}
|
||||
.wp-caption .wp-caption-text:before {
|
||||
color: #666;
|
||||
content: '\2014';
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
margin-right: 5px;
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 7px;
|
||||
}
|
||||
a:focus img[class*="wp-image-"],
|
||||
a:hover img[class*="wp-image-"],
|
||||
a:active img[class*="wp-image-"] {
|
||||
background: #eee;
|
||||
border-color: #bbb;
|
||||
}
|
||||
.wp-caption a:focus img,
|
||||
.wp-caption a:active img,
|
||||
.wp-caption a:hover img {
|
||||
background: #fff;
|
||||
border-color: #ddd;
|
||||
}
|
34
themes/myMap/footer.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying the footer.
|
||||
*
|
||||
* Contains the closing of the id=main div and all content after
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
<div class="clear"></div>
|
||||
</div><!-- #main -->
|
||||
|
||||
<footer id="colophon" role="contentinfo">
|
||||
|
||||
<?php
|
||||
/* A sidebar in the footer? Yep. You can can customize
|
||||
* your footer with three columns of widgets.
|
||||
*/
|
||||
get_sidebar( 'footer' );
|
||||
?>
|
||||
|
||||
<div id="site-generator">
|
||||
<?php do_action( 'mymap_credits' ); ?>
|
||||
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'mymap' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'mymap' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'mymap' ), 'WordPress' ); ?></a>
|
||||
</div>
|
||||
</footer><!-- #colophon -->
|
||||
</div><!-- #page -->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
16
themes/myMap/functions.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
// This theme uses wp_nav_menu() in one location.
|
||||
register_nav_menu( 'primary', __( 'Primary Menu', 'mymap' ) );
|
||||
|
||||
|
||||
register_sidebar( array(
|
||||
'name' => __( 'Main Sidebar', 'mymap' ),
|
||||
'id' => 'sidebar-1',
|
||||
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => "</aside>",
|
||||
'before_title' => '<h3 class="widget-title">',
|
||||
'after_title' => '</h3>',
|
||||
) );
|
||||
|
||||
|
||||
?>
|
71
themes/myMap/header.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
/**
|
||||
* The Header for our theme.
|
||||
*
|
||||
* Displays all of the <head> section and everything up till <div id="main">
|
||||
*
|
||||
* @package SoundMap
|
||||
* @subpackage myMap
|
||||
* @since SoundMap 3.0
|
||||
*/
|
||||
?><!DOCTYPE html>
|
||||
<!--[if IE 6]>
|
||||
<html id="ie6" <?php language_attributes(); ?>>
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<html id="ie7" <?php language_attributes(); ?>>
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<html id="ie8" <?php language_attributes(); ?>>
|
||||
<![endif]-->
|
||||
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||||
<html <?php language_attributes(); ?>>
|
||||
<!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title><?php wp_title(); ?></title>
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||
<link rel="stylesheet" type="text/css" media="screen, projection" href="<?php echo get_template_directory_uri(); ?>/inc/normalize.css" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
|
||||
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
|
||||
<![endif]-->
|
||||
<?php
|
||||
/* We add some JavaScript to pages with the comment form
|
||||
* to support sites with threaded comments (when in use).
|
||||
*/
|
||||
if ( is_singular() && get_option( 'thread_comments' ) )
|
||||
wp_enqueue_script( 'comment-reply' );
|
||||
|
||||
/* Always have wp_head() just before the closing </head>
|
||||
* tag of your theme, or you will break many plugins, which
|
||||
* generally use this hook to add elements to <head> such
|
||||
* as styles, scripts, and meta tags.
|
||||
*/
|
||||
wp_head();
|
||||
?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
<div id="page" class="hfeed">
|
||||
<header id="branding" role="banner">
|
||||
<div id="header-wrapper">
|
||||
<hgroup>
|
||||
<h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
|
||||
</hgroup>
|
||||
|
||||
<nav id="access" role="navigation">
|
||||
<h3 class="assistive-text"><?php _e( 'Main menu', 'mymap' ); ?></h3>
|
||||
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
|
||||
<div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'mymap' ); ?>"><?php _e( 'Skip to primary content', 'mymap' ); ?></a></div>
|
||||
<div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'mymap' ); ?>"><?php _e( 'Skip to secondary content', 'mymap' ); ?></a></div>
|
||||
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
|
||||
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
|
||||
</nav><!-- #access -->
|
||||
<div class="clear"></div>
|
||||
</div><!--#header-wrapper-->
|
||||
</header><!-- #branding -->
|
||||
|
||||
|
BIN
themes/myMap/images/comment-arrow-bypostauthor-dark-rtl.png
Normal file
After Width: | Height: | Size: 255 B |
BIN
themes/myMap/images/comment-arrow-bypostauthor-dark.png
Normal file
After Width: | Height: | Size: 237 B |
BIN
themes/myMap/images/comment-arrow-bypostauthor-rtl.png
Normal file
After Width: | Height: | Size: 257 B |
BIN
themes/myMap/images/comment-arrow-bypostauthor.png
Normal file
After Width: | Height: | Size: 239 B |
BIN
themes/myMap/images/comment-arrow-dark-rtl.png
Normal file
After Width: | Height: | Size: 272 B |
BIN
themes/myMap/images/comment-arrow-dark.png
Normal file
After Width: | Height: | Size: 348 B |
BIN
themes/myMap/images/comment-arrow-rtl.png
Normal file
After Width: | Height: | Size: 271 B |
BIN
themes/myMap/images/comment-arrow.png
Normal file
After Width: | Height: | Size: 250 B |
BIN
themes/myMap/images/comment-bubble-dark-rtl.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
themes/myMap/images/comment-bubble-dark.png
Normal file
After Width: | Height: | Size: 965 B |
BIN
themes/myMap/images/comment-bubble-rtl.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
themes/myMap/images/comment-bubble.png
Normal file
After Width: | Height: | Size: 925 B |
BIN
themes/myMap/images/search.png
Normal file
After Width: | Height: | Size: 441 B |
BIN
themes/myMap/images/wordpress.png
Normal file
After Width: | Height: | Size: 794 B |
504
themes/myMap/inc/normalize.css
vendored
Normal file
@ -0,0 +1,504 @@
|
||||
/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
|
||||
|
||||
/* =============================================================================
|
||||
HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Corrects block display not defined in IE6/7/8/9 & FF3
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects inline-block display not defined in IE6/7/8/9 & FF3
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
video {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prevents modern browsers from displaying 'audio' without controls
|
||||
* Remove excess height in iOS5 devices
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
|
||||
* Known issue: no IE6 support
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Base
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
|
||||
* http://clagnut.com/blog/348/#c790
|
||||
* 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
|
||||
* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
|
||||
*/
|
||||
|
||||
html {
|
||||
font-size: 100%; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses font-family inconsistency between 'textarea' and other form elements.
|
||||
*/
|
||||
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses margins handled incorrectly in IE6/7
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses outline displayed oddly in Chrome
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
* Improves readability when focused and also mouse hovered in all browsers
|
||||
* people.opera.com/patrickl/experiments/keyboard/test
|
||||
*/
|
||||
|
||||
a:hover,
|
||||
a:active {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses font sizes and margins set differently in IE6/7
|
||||
* Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin: 0.83em 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.17em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1em;
|
||||
margin: 1.33em 0;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 0.83em;
|
||||
margin: 1.67em 0;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 0.75em;
|
||||
margin: 2.33em 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in IE7/8/9, S5, Chrome
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses style set to 'bolder' in FF3+, S4/5, Chrome
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in S5, Chrome
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses styling not present in IE6/7/8/9
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses margins set differently in IE6/7
|
||||
*/
|
||||
|
||||
p,
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects font family set oddly in IE6, S4/5, Chrome
|
||||
* en.wikipedia.org/wiki/User:Davidgothberg/Test59
|
||||
*/
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, serif;
|
||||
_font-family: 'courier new', monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/*
|
||||
* Improves readability of pre-formatted text in all browsers
|
||||
*/
|
||||
|
||||
pre {
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Addresses CSS quotes not supported in IE6/7
|
||||
* 2. Addresses quote property not supported in S4
|
||||
*/
|
||||
|
||||
/* 1 */
|
||||
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
/* 2 */
|
||||
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prevents sub and sup affecting line-height in all browsers
|
||||
* gist.github.com/413930
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Lists
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses margins set differently in IE6/7
|
||||
*/
|
||||
|
||||
dl,
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 0 0 40px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses paddings set differently in IE6/7
|
||||
*/
|
||||
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
padding: 0 0 0 40px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects list images handled incorrectly in IE7
|
||||
*/
|
||||
|
||||
nav ul,
|
||||
nav ol {
|
||||
list-style: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
|
||||
* 2. Improves image quality when scaled in IE7
|
||||
* code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0; /* 1 */
|
||||
-ms-interpolation-mode: bicubic; /* 2 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Corrects overflow displayed oddly in IE9
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Figures
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Addresses margin not present in IE6/7/8/9, S5, O11
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Forms
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Corrects margin displayed oddly in IE6/7
|
||||
*/
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Define consistent border, margin, and padding
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Corrects color not being inherited in IE6/7/8/9
|
||||
* 2. Corrects text not wrapping in FF3
|
||||
* 3. Corrects alignment displayed oddly in IE6/7
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0;
|
||||
white-space: normal; /* 2 */
|
||||
*margin-left: -7px; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Corrects font size not being inherited in all browsers
|
||||
* 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
|
||||
* 3. Improves appearance and consistency in all browsers
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-size: 100%; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
vertical-align: baseline; /* 3 */
|
||||
*vertical-align: middle; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal; /* 1 */
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Improves usability and consistency of cursor style between image-type 'input' and others
|
||||
* 2. Corrects inability to style clickable 'input' types in iOS
|
||||
* 3. Removes inner spacing in IE7 without affecting normal text inputs
|
||||
* Known issue: inner spacing remains in IE6
|
||||
*/
|
||||
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
cursor: pointer; /* 1 */
|
||||
-webkit-appearance: button; /* 2 */
|
||||
*overflow: visible; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* Re-set default cursor for disabled elements
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Addresses box sizing set to content-box in IE8/9
|
||||
* 2. Removes excess padding in IE8/9
|
||||
* 3. Removes excess padding in IE7
|
||||
Known issue: excess padding remains in IE6
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
*height: 13px; /* 3 */
|
||||
*width: 13px; /* 3 */
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Addresses appearance set to searchfield in S5, Chrome
|
||||
* 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/*
|
||||
* Removes inner padding and search cancel button in S5, Chrome on OS X
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-decoration,
|
||||
input[type="search"]::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/*
|
||||
* Removes inner padding and border in FF3+
|
||||
* www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Removes default vertical scrollbar in IE6/7/8/9
|
||||
* 2. Improves readability and alignment in all browsers
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto; /* 1 */
|
||||
vertical-align: top; /* 2 */
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Tables
|
||||
========================================================================== */
|
||||
|
||||
/*
|
||||
* Remove most spacing between table cells
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
49
themes/myMap/index.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/**
|
||||
* The main template file.
|
||||
*
|
||||
* This is the most generic template file in a WordPress theme
|
||||
* and one of the two required files for a theme (the other being style.css).
|
||||
* It is used to display a page when nothing more specific matches a query.
|
||||
* E.g., it puts together the home page when no home.php file exists.
|
||||
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<?php the_map('map_canvas', true); ?>
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', get_post_format() ); ?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<article id="post-0" class="post no-results not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php _e( 'Nothing Found', 'mymap' ); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mymap' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
BIN
themes/myMap/languages/es_ES.mo
Normal file
519
themes/myMap/languages/es_ES.po
Normal file
@ -0,0 +1,519 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SoundMap Theme\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-23 17:44+0100\n"
|
||||
"PO-Revision-Date: 2012-03-23 17:45+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Audiolab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Spanish\n"
|
||||
"X-Poedit-Country: SPAIN\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../404.php:17
|
||||
msgid "This is somewhat embarrassing, isn’t it?"
|
||||
msgstr "Esto es un poco embarazoso, ¿verdad?"
|
||||
|
||||
#: ../404.php:21
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching, or one of the links below, can help."
|
||||
msgstr "Lo sentimos, pero no hemos encontrado nada en el archivo especificado. Quizás una búsqueda te ayudará a encontrar el post."
|
||||
|
||||
#: ../404.php:28
|
||||
msgid "Most Used Categories"
|
||||
msgstr "Categorías más utilizadas"
|
||||
|
||||
#: ../404.php:36
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgstr "Prueba buscando en los archivos mensuales. %1$s"
|
||||
|
||||
#: ../category.php:19
|
||||
#, php-format
|
||||
msgid "Category Archives: %s"
|
||||
msgstr "Archivo de la categoría: %s"
|
||||
|
||||
#: ../category.php:49
|
||||
#: ../index.php:34
|
||||
#: ../search.php:41
|
||||
#, fuzzy
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nada encontrado"
|
||||
|
||||
#: ../category.php:53
|
||||
#: ../index.php:38
|
||||
msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
|
||||
msgstr "Lo sentimos, pero no hemos encontrado nada en el archivo especificado. Quizás una búsqueda te ayudará a encontrar el post."
|
||||
|
||||
#: ../comments.php:17
|
||||
msgid "This post is password protected. Enter the password to view any comments."
|
||||
msgstr "Esta entrada está protegida con contraseña. Introduce la contraseña para poder ver los comentarios."
|
||||
|
||||
#: ../comments.php:40
|
||||
#: ../comments.php:60
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navegación de comentarios"
|
||||
|
||||
#: ../comments.php:41
|
||||
#: ../comments.php:61
|
||||
msgid "← Older Comments"
|
||||
msgstr "← Antiguos Comentarios"
|
||||
|
||||
#: ../comments.php:42
|
||||
#: ../comments.php:62
|
||||
#, fuzzy
|
||||
msgid "Newer Comments →"
|
||||
msgstr "Siguiente →"
|
||||
|
||||
#: ../comments.php:72
|
||||
msgid "Comments are closed."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-marker.php:13
|
||||
#, php-format
|
||||
msgid "<p>Author: %1$s</br>Date: %2$s</p>"
|
||||
msgstr "<p>Autor: %1$s</br>Fecha: %2$s</p>"
|
||||
|
||||
#: ../content-marker.php:27
|
||||
#: ../content-marker.php:30
|
||||
#: ../content-single.php:24
|
||||
#: ../content-single.php:27
|
||||
#: ../content.php:33
|
||||
#: ../content.php:43
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
|
||||
#: ../content-marker.php:31
|
||||
#, php-format
|
||||
msgid "Categories: %1$s<br/>Tags: %2$s</br>"
|
||||
msgstr "Categorías: %1$s<br/>Etiquetas: %2$s</br>"
|
||||
|
||||
#: ../content-marker.php:40
|
||||
#: ../content-page.php:21
|
||||
#: ../content-single.php:46
|
||||
#: ../content.php:62
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: ../content-page.php:18
|
||||
#: ../content-single.php:18
|
||||
#: ../content.php:25
|
||||
msgid "Pages:"
|
||||
msgstr "Páginas:"
|
||||
|
||||
#: ../content-single.php:29
|
||||
#, php-format
|
||||
msgid "This entry was posted in %1$s and tagged %2$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:31
|
||||
#, php-format
|
||||
msgid "This entry was posted in %1$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:33
|
||||
#, php-format
|
||||
msgid "This entry was posted by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:55
|
||||
#, fuzzy, php-format
|
||||
msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Siguiente <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../content.php:16
|
||||
msgid "Featured"
|
||||
msgstr "Aparece"
|
||||
|
||||
#: ../content.php:24
|
||||
msgid "Continue reading <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Continuar leyendo <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../content.php:37
|
||||
#, php-format
|
||||
msgid "<span class=\"%1$s\">Posted in</span> %2$s"
|
||||
msgstr "<span class=\"%1$s\">Publicado en</span> %2$s"
|
||||
|
||||
#: ../content.php:49
|
||||
#, php-format
|
||||
msgid "<span class=\"%1$s\">Tagged</span> %2$s"
|
||||
msgstr "<span class=\"%1$s\">Etiquetado</span> %2$s"
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "Leave a reply"
|
||||
msgstr "Dejar una respuesta"
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "<b>1</b> Reply"
|
||||
msgstr "<b>1</b> Respuesta"
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "<b>%</b> Replies"
|
||||
msgstr "<b>%</b> Respuestas"
|
||||
|
||||
#: ../footer.php:26
|
||||
msgid "http://wordpress.org/"
|
||||
msgstr "http://wordpress.org/"
|
||||
|
||||
#: ../footer.php:26
|
||||
#, php-format
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Basado en %s"
|
||||
|
||||
#: ../functions.php:3
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menu inicial"
|
||||
|
||||
#: ../functions.php:7
|
||||
msgid "Main Sidebar"
|
||||
msgstr "Barra lateral principal"
|
||||
|
||||
#: ../header.php:60
|
||||
msgid "Main menu"
|
||||
msgstr ""
|
||||
|
||||
#: ../header.php:62
|
||||
msgid "Skip to primary content"
|
||||
msgstr ""
|
||||
|
||||
#: ../header.php:63
|
||||
msgid "Skip to secondary content"
|
||||
msgstr ""
|
||||
|
||||
#: ../search.php:19
|
||||
#, php-format
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Resultado de la búsqueda: %s"
|
||||
|
||||
#: ../search.php:45
|
||||
msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
|
||||
msgstr "Lo sentimos, pero no hemos encontrado ningúna entrada que corresponda con la búsqueda. Por favor, inténtalo otra vez con otras palabras."
|
||||
|
||||
#: ../searchform.php:11
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: ../sidebar.php:18
|
||||
#, fuzzy
|
||||
msgid "Archives"
|
||||
msgstr "Archivo"
|
||||
|
||||
#: ../sidebar.php:25
|
||||
msgid "Meta"
|
||||
msgstr ""
|
||||
|
||||
#: ../single-marker.php:30
|
||||
msgid "Post navigation"
|
||||
msgstr "Navegación de entradas"
|
||||
|
||||
#: ../single-marker.php:31
|
||||
msgid "<span class=\"meta-nav\">←</span> Previous"
|
||||
msgstr "<span class=\"meta-nav\">←</span> Anterior"
|
||||
|
||||
#: ../single-marker.php:32
|
||||
msgid "Next <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Siguiente <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../tag.php:20
|
||||
#, php-format
|
||||
msgid "Tag Archives: %s"
|
||||
msgstr "Archivo de etiquetas: %s"
|
||||
|
||||
#~ msgid "en"
|
||||
#~ msgstr "en"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Primary Navigation"
|
||||
#~ msgstr "Navegación de imagen"
|
||||
|
||||
#~ msgid "Specie"
|
||||
#~ msgstr "Especie"
|
||||
|
||||
#~ msgid "Add New Specie"
|
||||
#~ msgstr "Añadir nueva Especie"
|
||||
|
||||
#~ msgid "Edit Specie"
|
||||
#~ msgstr "Editar Especie"
|
||||
|
||||
#~ msgid "New Specie"
|
||||
#~ msgstr "Nueva Especie"
|
||||
|
||||
#~ msgid "All Species"
|
||||
#~ msgstr "Todas las Especies"
|
||||
|
||||
#~ msgid "View Specie"
|
||||
#~ msgstr "Ver Especie"
|
||||
|
||||
#~ msgid "Search Species"
|
||||
#~ msgstr "Buscar Especies"
|
||||
|
||||
#~ msgid "No species found"
|
||||
#~ msgstr "No se han encontrado Especies"
|
||||
|
||||
#~ msgid "No species found in Trash"
|
||||
#~ msgstr "No se han encontrado Especies en la papelera"
|
||||
|
||||
#~ msgid "Species"
|
||||
#~ msgstr "Especies"
|
||||
|
||||
#~ msgid "Enarbolador"
|
||||
#~ msgstr "Enarbolador"
|
||||
|
||||
#~ msgid "Add New Enarbolador"
|
||||
#~ msgstr "Añadir nuevo Enarbolador"
|
||||
|
||||
#~ msgid "Edit Enarbolador"
|
||||
#~ msgstr "Editar Enarbolador"
|
||||
|
||||
#~ msgid "New Enarbolador"
|
||||
#~ msgstr "Nuevo Enarbolador"
|
||||
|
||||
#~ msgid "All Enarbolador"
|
||||
#~ msgstr "Todos los Enarboladores"
|
||||
|
||||
#~ msgid "View Enarbolador"
|
||||
#~ msgstr "Ver Enarbolador"
|
||||
|
||||
#~ msgid "Search Enarbolador"
|
||||
#~ msgstr "Buscar Enarbolador"
|
||||
|
||||
#~ msgid "No Enarbolador found"
|
||||
#~ msgstr "No se han encontrado Enarboladores"
|
||||
|
||||
#~ msgid "No Enarbolador found in Trash"
|
||||
#~ msgstr "No se han encontrado Enarboladores en la papelera"
|
||||
|
||||
#~ msgid "Datos del árbol"
|
||||
#~ msgstr "Datos del árbol"
|
||||
|
||||
#~ msgid "Datos de la especie"
|
||||
#~ msgstr "Datos de la especie"
|
||||
|
||||
#~ msgid "Datos del enarbolador"
|
||||
#~ msgstr "Datos del enarbolador"
|
||||
|
||||
#~ msgid "Imagen de fondo"
|
||||
#~ msgstr "Imagen de fondo"
|
||||
|
||||
#~ msgid "Galería de fotos"
|
||||
#~ msgstr "Galería de fotos"
|
||||
|
||||
#~ msgid "<p>Dirección web del enarbolador.</p>"
|
||||
#~ msgstr "<p>Dirección web del enarbolador.</p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>Seleccione una imagen del listado para utilizar como imagen de fondo. "
|
||||
#~ "Si no encuentra la imagen necesitada, puede añadirla en la opción "
|
||||
#~ "MULTIMEDIA del menú de administración.</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Seleccione una imagen del listado para utilizar como imagen de fondo. "
|
||||
#~ "Si no encuentra la imagen necesitada, puede añadirla en la opción "
|
||||
#~ "MULTIMEDIA del menú de administración.</p>"
|
||||
|
||||
#~ msgid "<p>Nombre científico de la especie.</p>"
|
||||
#~ msgstr "<p>Nombre científico de la especie.</p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>Seleccione el <i>Enarbolador</i>, correspondiente a esta ficha, del "
|
||||
#~ "desplegable que aparece a continuación. Si no encuentra el "
|
||||
#~ "<i>Enarbolador</i>, deberá crearlo añadiendo una nueva entrada de tipo "
|
||||
#~ "ENARBOLADOR.</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Seleccione el <i>Enarbolador</i>, correspondiente a esta ficha, del "
|
||||
#~ "desplegable que aparece a continuación. Si no encuentra el "
|
||||
#~ "<i>Enarbolador</i>, deberá crearlo añadiendo una nueva entrada de tipo "
|
||||
#~ "ENARBOLADOR.</p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>Seleccione la especie corresponiente al árbol del listado que aparece "
|
||||
#~ "a continuación. Si la especie no se encuentra en el listado, deberá "
|
||||
#~ "añadirla previamente creando una nueva entrada de tipo Especie</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Seleccione la especie corresponiente al árbol del listado que aparece "
|
||||
#~ "a continuación. Si la especie no se encuentra en el listado, deberá "
|
||||
#~ "añadirla previamente creando una nueva entrada de tipo Especie</p>"
|
||||
|
||||
#~ msgid "<p>Dirección en la que se encuentra el árbol</p>"
|
||||
#~ msgstr "<p>Dirección en la que se encuentra el árbol</p>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<p>Seleccione la galería de fotografías que acompaña a la ficha. Si no "
|
||||
#~ "encuentra la galería correspondiente, créela en la sección GALERIA</p>"
|
||||
#~ msgstr ""
|
||||
#~ "<p>Seleccione la galería de fotografías que acompaña a la ficha. Si no "
|
||||
#~ "encuentra la galería correspondiente, créela en la sección GALERIA</p>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Ninguna"
|
||||
#~ msgstr "Nada encontrado"
|
||||
|
||||
#~ msgid "Fotografías"
|
||||
#~ msgstr "Fotografías"
|
||||
|
||||
#~ msgid "OTROS ENARBOLADOS SIMILARES:"
|
||||
#~ msgstr "OTROS ENARBOLADOS SIMILARES:"
|
||||
|
||||
#~ msgid "ENARBOLACIONES:"
|
||||
#~ msgstr "ENARBOLACIONES:"
|
||||
|
||||
#~ msgid "<li>No hay resultados que coincidan con la búsqueda.</li>"
|
||||
#~ msgstr "<li>No hay resultados que coincidan con la búsqueda.</li>"
|
||||
|
||||
#~ msgid "Especie"
|
||||
#~ msgstr "Especie"
|
||||
|
||||
#~ msgid "Enarbolado por:"
|
||||
#~ msgstr "Enarbolado por:"
|
||||
|
||||
#~ msgid "Enarbolado por"
|
||||
#~ msgstr "Enarbolado por"
|
||||
|
||||
#~ msgid "+ info"
|
||||
#~ msgstr "+ info"
|
||||
|
||||
#~ msgid "Daily Archives: %s"
|
||||
#~ msgstr "Archivos diarios: %s"
|
||||
|
||||
#~ msgid "Monthly Archives: %s"
|
||||
#~ msgstr "Archivos mensuales: %s"
|
||||
|
||||
#~ msgid "Yearly Archives: %s"
|
||||
#~ msgstr "Archivos anuales: %s"
|
||||
|
||||
#~ msgid "Blog Archives"
|
||||
#~ msgstr "Archivo"
|
||||
|
||||
#~ msgid "Author Archives: %s"
|
||||
#~ msgstr "Archivos del autor: %s"
|
||||
|
||||
#~ msgid "About %s"
|
||||
#~ msgstr "Acerca de %s"
|
||||
|
||||
#~ msgid "Image"
|
||||
#~ msgstr "Imagen"
|
||||
|
||||
#~ msgid "Reply"
|
||||
#~ msgstr "Respuesta"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2"
|
||||
#~ "$s\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep"
|
||||
#~ "\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%"
|
||||
#~ "4$s\" title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
|
||||
#~ msgstr ""
|
||||
#~ "<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2"
|
||||
#~ "$s\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep"
|
||||
#~ "\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%"
|
||||
#~ "4$s\" title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
|
||||
|
||||
#~ msgid "<strong>1</strong> Reply"
|
||||
#~ msgstr "<strong>1</strong> Respuesta"
|
||||
|
||||
#~ msgid "<strong>%</strong> Replies"
|
||||
#~ msgstr "<strong>%</strong> Respuestas"
|
||||
|
||||
#~ msgid "Link"
|
||||
#~ msgstr "Enlace"
|
||||
|
||||
#~ msgid "Status"
|
||||
#~ msgstr "Estado"
|
||||
|
||||
#~ msgid "Upload recording"
|
||||
#~ msgstr "Añadir grabación"
|
||||
|
||||
#~ msgid "Secondary Sidebar"
|
||||
#~ msgstr "Barra lateral secundaria"
|
||||
|
||||
#~ msgid "An optional widget area for your site"
|
||||
#~ msgstr "Area opcional para Widget en tu página"
|
||||
|
||||
#~ msgid "Footer Area "
|
||||
#~ msgstr "Area de pié de página"
|
||||
|
||||
#~ msgid "An optional widget area for your site footer"
|
||||
#~ msgstr "Area opcional para Widget a pié de página"
|
||||
|
||||
#~ msgid "Footer Area Three"
|
||||
#~ msgstr "Area de pié de página tres"
|
||||
|
||||
#~ msgid "%s Theme Options"
|
||||
#~ msgstr "Opciones del Theme %s"
|
||||
|
||||
#~ msgid "Theme Options"
|
||||
#~ msgstr "Opciones del Theme"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Links"
|
||||
#~ msgstr "Enlace"
|
||||
|
||||
#~ msgid "Title:"
|
||||
#~ msgstr "Título:"
|
||||
|
||||
#~ msgid "SoundMap"
|
||||
#~ msgstr "Mapa Sonoro"
|
||||
|
||||
#~ msgid "← Previous"
|
||||
#~ msgstr "← Anterior"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span "
|
||||
#~ "class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</"
|
||||
#~ "abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s "
|
||||
#~ "× %5$s</a> in <a href=\"%6$s\" title=\"Return to %7$s\" rel="
|
||||
#~ "\"gallery\">%7$s</a>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"meta-prep meta-prep-entry-date\">Publicado </span> <span "
|
||||
#~ "class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</"
|
||||
#~ "abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s "
|
||||
#~ "× %5$s</a> en <a href=\"%6$s\" title=\"Return to %7$s\" rel="
|
||||
#~ "\"gallery\">%7$s</a>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Tags"
|
||||
#~ msgstr "Páginas:"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Categories"
|
||||
#~ msgstr "Categorías más utilizadas"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Some themes provide customization options that are grouped together on a "
|
||||
#~ "Theme Options screen. If you change themes, options may change or "
|
||||
#~ "disappear, as they are theme-specific. Your current theme, Twenty Eleven, "
|
||||
#~ "provides the following Theme Options:"
|
||||
#~ msgstr ""
|
||||
#~ "Algunos themes ofrecen opciones de personalización que se muestran "
|
||||
#~ "agrupados en la ventana de opciones de Theme. Al ser específicas de cada "
|
||||
#~ "Theme, si cambias themes, las opciones pueden cambiar o desaparecer. Tu "
|
||||
#~ "Theme actual, SoundMap, ofrece las siguientes Opciones de Tema:"
|
||||
|
||||
#~ msgid "For more information:"
|
||||
#~ msgstr "Para más información:"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Default color: %s"
|
||||
#~ msgstr "Resultado de la búsqueda: %s"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "0 <span class=\"reply\">comments →</span>"
|
||||
#~ msgstr "Siguiente <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "1 <span class=\"reply\">comment →</span>"
|
||||
#~ msgstr "Siguiente <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "% <span class=\"reply\">comments →</span>"
|
||||
#~ msgstr "Siguiente <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#~ msgid "Number of posts to show:"
|
||||
#~ msgstr "Número de entradas a mostrar:"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Leave a Reply"
|
||||
#~ msgstr "Dejar una respuesta"
|
606
themes/myMap/languages/es_ES.po.html
Normal file
@ -0,0 +1,606 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title> SoundMap Theme - Spanish / SPAIN - Poedit Export </title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body bgcolor='#FFFFFF'>
|
||||
<h1> SoundMap Theme : Spanish / SPAIN</h1>
|
||||
<table align=center border=1 cellspacing=2 cellpadding=4>
|
||||
<tr><th colspan=2>Project info</th></tr>
|
||||
<tr><td>Project name and version:</td><td>SoundMap Theme</td></tr>
|
||||
<tr><td>Language:</td><td>Spanish</td></tr>
|
||||
<tr><td>Country:</td><td>SPAIN</td></tr>
|
||||
<tr><td>Team:</td><td>Audiolab</td></tr>
|
||||
<tr><td>Team's email address:</td><td><a href="mailto:"></a></td></tr>
|
||||
<tr><td>Charset:</td><td>UTF-8</td></tr>
|
||||
</table>
|
||||
93 % translated, 44 strings (3 fuzzy, 0 bad tokens, 0 not translated)
|
||||
<table border=1 cellspacing=2 cellpadding=4>
|
||||
<tr>
|
||||
<th>
|
||||
Original string
|
||||
</th>
|
||||
<th>
|
||||
Translation
|
||||
</th>
|
||||
</th>
|
||||
<th>
|
||||
Notes
|
||||
</th>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
en
|
||||
</td>
|
||||
<td>
|
||||
en
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#E7E4B7'>
|
||||
<td>
|
||||
Primary Navigation
|
||||
</td>
|
||||
<td>
|
||||
Navegación de imagen
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
Fuzzy translation<BR>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Specie
|
||||
</td>
|
||||
<td>
|
||||
Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Add New Specie
|
||||
</td>
|
||||
<td>
|
||||
Añadir nueva Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Edit Specie
|
||||
</td>
|
||||
<td>
|
||||
Editar Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
New Specie
|
||||
</td>
|
||||
<td>
|
||||
Nueva Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
All Species
|
||||
</td>
|
||||
<td>
|
||||
Todas las Especies
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
View Specie
|
||||
</td>
|
||||
<td>
|
||||
Ver Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Search Species
|
||||
</td>
|
||||
<td>
|
||||
Buscar Especies
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
No species found
|
||||
</td>
|
||||
<td>
|
||||
No se han encontrado Especies
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
No species found in Trash
|
||||
</td>
|
||||
<td>
|
||||
No se han encontrado Especies en la papelera
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Species
|
||||
</td>
|
||||
<td>
|
||||
Especies
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Add New Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Añadir nuevo Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Edit Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Editar Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
New Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Nuevo Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
All Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Todos los Enarboladores
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
View Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Ver Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Search Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Buscar Enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
No Enarbolador found
|
||||
</td>
|
||||
<td>
|
||||
No se han encontrado Enarboladores
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
No Enarbolador found in Trash
|
||||
</td>
|
||||
<td>
|
||||
No se han encontrado Enarboladores en la papelera
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Datos del árbol
|
||||
</td>
|
||||
<td>
|
||||
Datos del árbol
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Datos de la especie
|
||||
</td>
|
||||
<td>
|
||||
Datos de la especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Datos del enarbolador
|
||||
</td>
|
||||
<td>
|
||||
Datos del enarbolador
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Imagen de fondo
|
||||
</td>
|
||||
<td>
|
||||
Imagen de fondo
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Galería de fotos
|
||||
</td>
|
||||
<td>
|
||||
Galería de fotos
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
<p>Dirección web del enarbolador.</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Dirección web del enarbolador.</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
<p>Seleccione una imagen del listado para utilizar como imagen de fondo. Si no encuentra la imagen necesitada, puede añadirla en la opción MULTIMEDIA del menú de administración.</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Seleccione una imagen del listado para utilizar como imagen de fondo. Si no encuentra la imagen necesitada, puede añadirla en la opción MULTIMEDIA del menú de administración.</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F4F1C1'>
|
||||
<td>
|
||||
Ninguno
|
||||
</td>
|
||||
<td>
|
||||
Nada encontrado
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
Fuzzy translation<BR>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
<p>Nombre científico de la especie.</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Nombre científico de la especie.</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
<p>Seleccione el <i>Enarbolador</i>, correspondiente a esta ficha, del desplegable que aparece a continuación. Si no encuentra el <i>Enarbolador</i>, deberá crearlo añadiendo una nueva entrada de tipo ENARBOLADOR.</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Seleccione el <i>Enarbolador</i>, correspondiente a esta ficha, del desplegable que aparece a continuación. Si no encuentra el <i>Enarbolador</i>, deberá crearlo añadiendo una nueva entrada de tipo ENARBOLADOR.</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
<p>Seleccione la especie corresponiente al árbol del listado que aparece a continuación. Si la especie no se encuentra en el listado, deberá añadirla previamente creando una nueva entrada de tipo Especie</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Seleccione la especie corresponiente al árbol del listado que aparece a continuación. Si la especie no se encuentra en el listado, deberá añadirla previamente creando una nueva entrada de tipo Especie</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
<p>Dirección en la que se encuentra el árbol</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Dirección en la que se encuentra el árbol</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
<p>Seleccione la galería de fotografías que acompaña a la ficha. Si no encuentra la galería correspondiente, créela en la sección GALERIA</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>Seleccione la galería de fotografías que acompaña a la ficha. Si no encuentra la galería correspondiente, créela en la sección GALERIA</p>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F4F1C1'>
|
||||
<td>
|
||||
Ninguna
|
||||
</td>
|
||||
<td>
|
||||
Nada encontrado
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
Fuzzy translation<BR>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Fotografías
|
||||
</td>
|
||||
<td>
|
||||
Fotografías
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
OTROS ENARBOLADOS SIMILARES:
|
||||
</td>
|
||||
<td>
|
||||
OTROS ENARBOLADOS SIMILARES:
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
ENARBOLACIONES:
|
||||
</td>
|
||||
<td>
|
||||
ENARBOLACIONES:
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
<li>No hay resultados que coincidan con la búsqueda.</li>
|
||||
</td>
|
||||
<td>
|
||||
<li>No hay resultados que coincidan con la búsqueda.</li>
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Search
|
||||
</td>
|
||||
<td>
|
||||
Buscar
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Especie
|
||||
</td>
|
||||
<td>
|
||||
Especie
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
Enarbolado por:
|
||||
</td>
|
||||
<td>
|
||||
Enarbolado por:
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#FFFFFF'>
|
||||
<td>
|
||||
Enarbolado por
|
||||
</td>
|
||||
<td>
|
||||
Enarbolado por
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor='#F2F2F2'>
|
||||
<td>
|
||||
+ info
|
||||
</td>
|
||||
<td>
|
||||
+ info
|
||||
</td>
|
||||
<td>
|
||||
<font size="-1">
|
||||
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
BIN
themes/myMap/languages/es_EU.mo
Normal file
448
themes/myMap/languages/es_EU.po
Normal file
@ -0,0 +1,448 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SoundMap Theme\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-23 17:45+0100\n"
|
||||
"PO-Revision-Date: 2012-03-23 17:45+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Audiolab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Basque\n"
|
||||
"X-Poedit-Country: SPAIN\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../404.php:17
|
||||
msgid "This is somewhat embarrassing, isn’t it?"
|
||||
msgstr "Hau ez da sobera goxoa, ezta?"
|
||||
|
||||
#: ../404.php:21
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching, or one of the links below, can help."
|
||||
msgstr "Itxura batean, ezin dugu topatu bilaka zabiltzana. Beharbada bilaketa bat egitea lagungarriago izango zaizu."
|
||||
|
||||
#: ../404.php:28
|
||||
msgid "Most Used Categories"
|
||||
msgstr "Gehien erabilitako atalak"
|
||||
|
||||
#: ../404.php:36
|
||||
#, php-format
|
||||
msgid "Try looking in the monthly archives. %1$s"
|
||||
msgstr "Saia zaitez hileroko artxiboetan bilatzen. %1$s"
|
||||
|
||||
#: ../category.php:19
|
||||
#, php-format
|
||||
msgid "Category Archives: %s"
|
||||
msgstr "%s ataleko artxiboa"
|
||||
|
||||
#: ../category.php:49
|
||||
#: ../index.php:34
|
||||
#: ../search.php:41
|
||||
#, fuzzy
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ez da ezer topatu"
|
||||
|
||||
#: ../category.php:53
|
||||
#: ../index.php:38
|
||||
msgid "Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post."
|
||||
msgstr "Barkatu, baina ez dugu ezer topatu eskatu duzun artxiboan. Beharbada bilaketa bat egiteak lagunduko dizu."
|
||||
|
||||
#: ../comments.php:17
|
||||
msgid "This post is password protected. Enter the password to view any comments."
|
||||
msgstr "Esta entrada está protegida con contraseña. Introduce la contraseña para poder ver los comentarios."
|
||||
|
||||
#: ../comments.php:40
|
||||
#: ../comments.php:60
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navegación de comentarios"
|
||||
|
||||
#: ../comments.php:41
|
||||
#: ../comments.php:61
|
||||
msgid "← Older Comments"
|
||||
msgstr "← Antiguos Comentarios"
|
||||
|
||||
#: ../comments.php:42
|
||||
#: ../comments.php:62
|
||||
#, fuzzy
|
||||
msgid "Newer Comments →"
|
||||
msgstr "Hurrengoa →"
|
||||
|
||||
#: ../comments.php:72
|
||||
msgid "Comments are closed."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-marker.php:13
|
||||
#, php-format
|
||||
msgid "<p>Author: %1$s</br>Date: %2$s</p>"
|
||||
msgstr "<p>Egilea: %1$s</br>Data: %2$s</p>"
|
||||
|
||||
#: ../content-marker.php:27
|
||||
#: ../content-marker.php:30
|
||||
#: ../content-single.php:24
|
||||
#: ../content-single.php:27
|
||||
#: ../content.php:33
|
||||
#: ../content.php:43
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
|
||||
#: ../content-marker.php:31
|
||||
#, php-format
|
||||
msgid "Categories: %1$s<br/>Tags: %2$s</br>"
|
||||
msgstr "Atalak: %1$s<br/>Etiketak: %2$s</br>"
|
||||
|
||||
#: ../content-marker.php:40
|
||||
#: ../content-page.php:21
|
||||
#: ../content-single.php:46
|
||||
#: ../content.php:62
|
||||
msgid "Edit"
|
||||
msgstr "Editatu"
|
||||
|
||||
#: ../content-page.php:18
|
||||
#: ../content-single.php:18
|
||||
#: ../content.php:25
|
||||
msgid "Pages:"
|
||||
msgstr "Orrialdeak:"
|
||||
|
||||
#: ../content-single.php:29
|
||||
#, php-format
|
||||
msgid "This entry was posted in %1$s and tagged %2$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:31
|
||||
#, php-format
|
||||
msgid "This entry was posted in %1$s by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:33
|
||||
#, php-format
|
||||
msgid "This entry was posted by <a href=\"%6$s\">%5$s</a>. Bookmark the <a href=\"%3$s\" title=\"Permalink to %4$s\" rel=\"bookmark\">permalink</a>."
|
||||
msgstr ""
|
||||
|
||||
#: ../content-single.php:55
|
||||
#, fuzzy, php-format
|
||||
msgid "View all posts by %s <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Hurrengoa <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../content.php:16
|
||||
msgid "Featured"
|
||||
msgstr "Ageri da"
|
||||
|
||||
#: ../content.php:24
|
||||
msgid "Continue reading <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Jarraitu irakurtzen <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../content.php:37
|
||||
#, php-format
|
||||
msgid "<span class=\"%1$s\">Posted in</span> %2$s"
|
||||
msgstr "<span class=\"%1$s\">Non argitaratua</span> %2$s"
|
||||
|
||||
#: ../content.php:49
|
||||
#, php-format
|
||||
msgid "<span class=\"%1$s\">Tagged</span> %2$s"
|
||||
msgstr "<span class=\"%1$s\">Etiketatua</span> %2$s"
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "Leave a reply"
|
||||
msgstr "Utzi erantzun bat"
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "<b>1</b> Reply"
|
||||
msgstr "Erantzun <b>1</b> "
|
||||
|
||||
#: ../content.php:59
|
||||
msgid "<b>%</b> Replies"
|
||||
msgstr "<b>%</b> erantzun"
|
||||
|
||||
#: ../footer.php:26
|
||||
msgid "http://wordpress.org/"
|
||||
msgstr "http://wordpress.org/"
|
||||
|
||||
#: ../footer.php:26
|
||||
#, php-format
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "%s-en oinarritua"
|
||||
|
||||
#: ../functions.php:3
|
||||
msgid "Primary Menu"
|
||||
msgstr "Oinarrizko menua"
|
||||
|
||||
#: ../functions.php:7
|
||||
msgid "Main Sidebar"
|
||||
msgstr "Alboko barra nagusia"
|
||||
|
||||
#: ../header.php:60
|
||||
msgid "Main menu"
|
||||
msgstr ""
|
||||
|
||||
#: ../header.php:62
|
||||
msgid "Skip to primary content"
|
||||
msgstr ""
|
||||
|
||||
#: ../header.php:63
|
||||
msgid "Skip to secondary content"
|
||||
msgstr ""
|
||||
|
||||
#: ../search.php:19
|
||||
#, php-format
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Bilaketaren emaitza: %s"
|
||||
|
||||
#: ../search.php:45
|
||||
msgid "Sorry, but nothing matched your search criteria. Please try again with some different keywords."
|
||||
msgstr "Sentitzen dugu, baina ez dugu zure bilaketari dagokion inolako sarrerarik topatu. Mesedez, saia zaitez berriz beste hitzak erabiliz."
|
||||
|
||||
#: ../searchform.php:11
|
||||
msgid "Search"
|
||||
msgstr "Bilatu"
|
||||
|
||||
#: ../sidebar.php:18
|
||||
#, fuzzy
|
||||
msgid "Archives"
|
||||
msgstr "Artxiboak"
|
||||
|
||||
#: ../sidebar.php:25
|
||||
msgid "Meta"
|
||||
msgstr ""
|
||||
|
||||
#: ../single-marker.php:30
|
||||
msgid "Post navigation"
|
||||
msgstr "Post nabigazioa"
|
||||
|
||||
#: ../single-marker.php:31
|
||||
msgid "<span class=\"meta-nav\">←</span> Previous"
|
||||
msgstr "<span class=\"meta-nav\">←</span> Aurrekoa"
|
||||
|
||||
#: ../single-marker.php:32
|
||||
msgid "Next <span class=\"meta-nav\">→</span>"
|
||||
msgstr "Hurrengoa <span class=\"meta-nav\">→</span>"
|
||||
|
||||
#: ../tag.php:20
|
||||
#, php-format
|
||||
msgid "Tag Archives: %s"
|
||||
msgstr "%s etiketadun artxiboak"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Primary Navigation"
|
||||
#~ msgstr "irudien nabigazioa"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "All Species"
|
||||
#~ msgstr "Lotura"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Search Species"
|
||||
#~ msgstr "Bilatu"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Ninguna"
|
||||
#~ msgstr "Ez da ezer topatu"
|
||||
|
||||
#~ msgid "Daily Archives: %s"
|
||||
#~ msgstr "Eguneroko artxiboak: %s"
|
||||
|
||||
#~ msgid "Monthly Archives: %s"
|
||||
#~ msgstr "Hileroko artxiboak: %s"
|
||||
|
||||
#~ msgid "Yearly Archives: %s"
|
||||
#~ msgstr "Urteroko artxiboak: %s"
|
||||
|
||||
#~ msgid "Author Archives: %s"
|
||||
#~ msgstr "%s egilearen artxiboak"
|
||||
|
||||
#~ msgid "About %s"
|
||||
#~ msgstr " %s-i buruz"
|
||||
|
||||
#~ msgid "Image"
|
||||
#~ msgstr "Irudia"
|
||||
|
||||
#~ msgid "Reply"
|
||||
#~ msgstr "Erantzuna"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2"
|
||||
#~ "$s\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep"
|
||||
#~ "\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%"
|
||||
#~ "4$s\" title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
|
||||
#~ msgstr ""
|
||||
#~ "<a href=\"%1$s\" rel=\"bookmark\"><time class=\"entry-date\" datetime=\"%2"
|
||||
#~ "$s\" pubdate>%3$s</time></a><span class=\"by-author\"> <span class=\"sep"
|
||||
#~ "\"> by </span> <span class=\"author vcard\"><a class=\"url fn n\" href=\"%"
|
||||
#~ "4$s\" title=\"%5$s\" rel=\"author\">%6$s</a></span></span>"
|
||||
|
||||
#~ msgid "<strong>1</strong> Reply"
|
||||
#~ msgstr "Erantzun <strong>1</strong> "
|
||||
|
||||
#~ msgid "<strong>%</strong> Replies"
|
||||
#~ msgstr "<strong>%</strong> erantzun"
|
||||
|
||||
#~ msgid "Link"
|
||||
#~ msgstr "Lotura"
|
||||
|
||||
#~ msgid "Status"
|
||||
#~ msgstr "Egoera"
|
||||
|
||||
#~ msgid "Upload recording"
|
||||
#~ msgstr "Gehitu grabaketa"
|
||||
|
||||
#~ msgid "Secondary Sidebar"
|
||||
#~ msgstr "Bigarren alboko barra"
|
||||
|
||||
#~ msgid "An optional widget area for your site"
|
||||
#~ msgstr "zure gunerako aukerazko widget lekua"
|
||||
|
||||
#~ msgid "Footer Area "
|
||||
#~ msgstr "Oinaren lekua"
|
||||
|
||||
#~ msgid "An optional widget area for your site footer"
|
||||
#~ msgstr "zure gunerako oinarentzako aukerazko widget lekua"
|
||||
|
||||
#~ msgid "Footer Area Three"
|
||||
#~ msgstr "Oinaren lekua hiru"
|
||||
|
||||
#~ msgid "%s Theme Options"
|
||||
#~ msgstr "%s Theme-aren aukerak"
|
||||
|
||||
#~ msgid "Theme Options"
|
||||
#~ msgstr "Theme-aren aukerak"
|
||||
|
||||
#~ msgid "Links"
|
||||
#~ msgstr "Lotura"
|
||||
|
||||
#~ msgid "Title:"
|
||||
#~ msgstr "Izenburua:"
|
||||
|
||||
#~ msgid "SoundMap"
|
||||
#~ msgstr "Soinuen Mapa"
|
||||
|
||||
#~ msgid "← Previous"
|
||||
#~ msgstr "← Aurrekoa"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span class=\"meta-prep meta-prep-entry-date\">Published </span> <span "
|
||||
#~ "class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</"
|
||||
#~ "abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s "
|
||||
#~ "× %5$s</a> in <a href=\"%6$s\" title=\"Return to %7$s\" rel="
|
||||
#~ "\"gallery\">%7$s</a>"
|
||||
#~ msgstr ""
|
||||
#~ "<span class=\"meta-prep meta-prep-entry-date\">Argitaratua </span> <span "
|
||||
#~ "class=\"entry-date\"><abbr class=\"published\" title=\"%1$s\">%2$s</"
|
||||
#~ "abbr></span> at <a href=\"%3$s\" title=\"Link to full-size image\">%4$s "
|
||||
#~ "× %5$s</a> en <a href=\"%6$s\" title=\"Return to %7$s\" rel="
|
||||
#~ "\"gallery\">%7$s</a>"
|
||||
|
||||
#~ msgid "Author"
|
||||
#~ msgstr "Egilea"
|
||||
|
||||
#~ msgid "Date"
|
||||
#~ msgstr "Data"
|
||||
|
||||
#~ msgid "Tags"
|
||||
#~ msgstr "Orrialdeak:"
|
||||
|
||||
#~ msgid "Categories"
|
||||
#~ msgstr "Gehien erabilitako atalak"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Some themes provide customization options that are grouped together on a "
|
||||
#~ "Theme Options screen. If you change themes, options may change or "
|
||||
#~ "disappear, as they are theme-specific. Your current theme, Twenty Eleven, "
|
||||
#~ "provides the following Theme Options:"
|
||||
#~ msgstr ""
|
||||
#~ "Theme batzuk zure webgunea pertsonalizatzeko aukerak eskaintzen dituzte. "
|
||||
#~ "Hortarako baliabideak Theme bakoitzan Aukeren atalean ikusiko dituzu. "
|
||||
#~ "Theme-a aldatzerakoan aukera hauetako batzuk desagertu edo aldatu "
|
||||
#~ "daitezke, Theme bakoitzak bait ditu bereak. Zuk orain instalatuta duzun "
|
||||
#~ "themeak, SoundMap izenekoak, honako aukerak eskaintzen ditu:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<strong>Color Scheme</strong>: You can choose a color palette of \"Light"
|
||||
#~ "\" (light background with dark text) or \"Dark\" (dark background with "
|
||||
#~ "light text) for your site."
|
||||
#~ msgstr ""
|
||||
#~ "<strong>Kolore eskema</strong>: Kolore paleta desberdinak aukera "
|
||||
#~ "ditzazkezu zure webgunerako, adibidez \"Light\" (fondo argia hizki "
|
||||
#~ "ilunekin) edo \"Dark\" (fondo iluna hizki argiekin)."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<strong>Link Color</strong>: You can choose the color used for text links "
|
||||
#~ "on your site. You can enter the HTML color or hex code, or you can choose "
|
||||
#~ "visually by clicking the \"Select a Color\" button to pick from a color "
|
||||
#~ "wheel."
|
||||
#~ msgstr ""
|
||||
#~ "<strong>Loturen kolorea</strong>: Aukeratutako lotura testua edo testu "
|
||||
#~ "hyperlinkeatua azpimarratzeko kolore desberdinak erabili ditzazkezu. "
|
||||
#~ "Kolorea HTML kode bidez edo hex kode bidez alda dezakezu, edo ikusiz alda "
|
||||
#~ "dezakezu \"Select a Color\" botoian klik egin eta gustuko duzun kolorea "
|
||||
#~ "aukeratuz."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<strong>Default Layout</strong>: You can choose if you want your "
|
||||
#~ "site’s default layout to have a sidebar on the left, the right, or "
|
||||
#~ "not at all."
|
||||
#~ msgstr ""
|
||||
#~ "<strong>Defektuzko diseinu plangintza </strong>: Zure webguneaaren "
|
||||
#~ "diseinua defektuzkoa izan dadin aukera dezakezu, edo alde batean, ezker "
|
||||
#~ "edo eskuinaldean barra eduki dezan aukera dezakezu."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Remember to click \"Save Changes\" to save any changes you have made to "
|
||||
#~ "the theme options."
|
||||
#~ msgstr ""
|
||||
#~ "Gogoratu \"Save Changes\"botoian klik egitea, Theme-aren aukeretan "
|
||||
#~ "egindako aldaketak gordetzeko."
|
||||
|
||||
#~ msgid "For more information:"
|
||||
#~ msgstr "Informazio gehiago:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<a href=\"http://codex.wordpress.org/Appearance_Theme_Options_Screen\" "
|
||||
#~ "target=\"_blank\">Documentation on Theme Options</a>"
|
||||
#~ msgstr ""
|
||||
#~ "<a href=\"http://codex.wordpress.org/Appearance_Theme_Options_Screen\" "
|
||||
#~ "target=\"_blank\"> Theme-aren aukerei buruzko dokumentazioa</a>"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<a href=\"http://wordpress.org/support/\" target=\"_blank\">Support "
|
||||
#~ "Forums</a>"
|
||||
#~ msgstr ""
|
||||
#~ "<a href=\"http://wordpress.org/support/\" target=\"_blank\">Laguntzarako "
|
||||
#~ "foroak</a>"
|
||||
|
||||
#~ msgid "Light"
|
||||
#~ msgstr "Argia"
|
||||
|
||||
#~ msgid "Dark"
|
||||
#~ msgstr "Iluna"
|
||||
|
||||
#~ msgid "Content on left"
|
||||
#~ msgstr "Edukiak ezkerretara"
|
||||
|
||||
#~ msgid "Content on right"
|
||||
#~ msgstr "Edukiak eskuinetara"
|
||||
|
||||
#~ msgid "One-column, no sidebar"
|
||||
#~ msgstr "Zutabe bakarra,alboko barrarik gabe"
|
||||
|
||||
#~ msgid "Color Scheme"
|
||||
#~ msgstr "Kolore eskema"
|
||||
|
||||
#~ msgid "Link Color"
|
||||
#~ msgstr "Loturen kolorea"
|
||||
|
||||
#~ msgid "Default color: %s"
|
||||
#~ msgstr "Defektuzko kolorea: %s"
|
||||
|
||||
#~ msgid "0 <span class=\"reply\">comments →</span>"
|
||||
#~ msgstr "0 <span class=\"reply\">iruzkin →</span>"
|
||||
|
||||
#~ msgid "1 <span class=\"reply\">comment →</span>"
|
||||
#~ msgstr "<span class=\"reply\">iruzkin →</span> 1"
|
||||
|
||||
#~ msgid "% <span class=\"reply\">comments →</span>"
|
||||
#~ msgstr "% <span class=\"reply\">iruzkin →</span>"
|
||||
|
||||
#~ msgid "Number of posts to show:"
|
||||
#~ msgstr "Erakusteko post kopurua:"
|
1256
themes/myMap/languages/es_EU.po.html
Normal file
281
themes/myMap/license.txt
Normal file
@ -0,0 +1,281 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110, USA
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
29
themes/myMap/page.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying all pages.
|
||||
*
|
||||
* This is the template that displays all pages by default.
|
||||
* Please note that this is the WordPress construct of pages
|
||||
* and that other 'pages' on your WordPress site will use a
|
||||
* different template.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', 'page' ); ?>
|
||||
|
||||
<?php comments_template( '', true ); ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
4
themes/myMap/readme.txt
Normal file
@ -0,0 +1,4 @@
|
||||
= myMap =
|
||||
|
||||
* by Xavier Balderas http://www.xavierbalderas.com
|
||||
|
582
themes/myMap/rtl.css
Normal file
@ -0,0 +1,582 @@
|
||||
/*
|
||||
Theme Name: Twenty Eleven
|
||||
|
||||
Adding support for language written in a Right To Left (RTL) direction is easy -
|
||||
it's just a matter of overwriting all the horizontal positioning attributes
|
||||
of your CSS stylesheet in a separate stylesheet file named rtl.css.
|
||||
|
||||
http://codex.wordpress.org/Right_to_Left_Language_Support
|
||||
|
||||
*/
|
||||
|
||||
/* =Reset reset
|
||||
----------------------------------------------- */
|
||||
|
||||
caption, th, td {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* =Structure
|
||||
----------------------------------------------- */
|
||||
|
||||
body {
|
||||
direction:rtl;
|
||||
unicode-bidi:embed;
|
||||
}
|
||||
|
||||
/* Showcase */
|
||||
.page-template-showcase-php section.recent-posts {
|
||||
float: left;
|
||||
margin: 0 31% 0 0;
|
||||
}
|
||||
.page-template-showcase-php #main .widget-area {
|
||||
float: right;
|
||||
margin: 0 0 0 -22.15%;
|
||||
}
|
||||
|
||||
/* One column */
|
||||
|
||||
.one-column article.feature-image.small .entry-summary a {
|
||||
left: auto;
|
||||
right: -9%;
|
||||
}
|
||||
|
||||
/* Simplify the pullquotes and pull styles */
|
||||
.one-column.singular .entry-meta .edit-link a {
|
||||
right: 0px;
|
||||
left: auto;
|
||||
}
|
||||
/* Make sure we have room for our comment avatars */
|
||||
.one-column .commentlist > li.comment {
|
||||
margin-left: 0;
|
||||
margin-right: 102px;
|
||||
}
|
||||
/* Make sure the logo and search form don't collide */
|
||||
.one-column #branding #searchform {
|
||||
right: auto;
|
||||
left: 40px;
|
||||
}
|
||||
/* Talking avatars take up too much room at this size */
|
||||
.one-column .commentlist > li.comment {
|
||||
margin-right: 0;
|
||||
}
|
||||
.one-column .commentlist > li.comment .comment-meta,
|
||||
.one-column .commentlist > li.comment .comment-content {
|
||||
margin-right: 0;
|
||||
margin-left: 85px;
|
||||
}
|
||||
.one-column .commentlist .avatar {
|
||||
right: auto;
|
||||
left: 1.625em;
|
||||
}
|
||||
.one-column .commentlist .children .avatar {
|
||||
left: auto;
|
||||
right: 2.2em;
|
||||
}
|
||||
|
||||
/* =Global
|
||||
----------------------------------------------- */
|
||||
|
||||
/* Text elements */
|
||||
p {
|
||||
margin-bottom: 1.625em;
|
||||
}
|
||||
ul, ol {
|
||||
margin: 0 2.5em 1.625em 0;
|
||||
}
|
||||
.ltr ul, ol {
|
||||
margin: 0 0 1.625em 2.5em;
|
||||
}
|
||||
blockquote {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
blockquote em, blockquote i, blockquote cite {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
textarea {
|
||||
padding-left: 0;
|
||||
padding-right: 3px;
|
||||
}
|
||||
input#s {
|
||||
background-position: 97% 6px;
|
||||
padding: 4px 28px 4px 10px;
|
||||
}
|
||||
|
||||
/* Assistive text */
|
||||
#access a.assistive-text:active,
|
||||
#access a.assistive-text:focus {
|
||||
left: auto;
|
||||
right: 7.6%;
|
||||
}
|
||||
|
||||
/* =Header
|
||||
----------------------------------------------- */
|
||||
|
||||
#site-title {
|
||||
margin-right: 0;
|
||||
margin-left: 270px;
|
||||
}
|
||||
|
||||
#site-description {
|
||||
margin: 0 0 3.65625em 270px;
|
||||
}
|
||||
|
||||
/* =Menu
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
#access {
|
||||
float: right;
|
||||
}
|
||||
#access ul {
|
||||
margin: 0 -0.8125em 0 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
#access li {
|
||||
float: right;
|
||||
}
|
||||
#access ul ul {
|
||||
float: right;
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
#access ul ul ul {
|
||||
left: auto;
|
||||
right: 100%;
|
||||
}
|
||||
|
||||
/* Search Form */
|
||||
#branding #searchform {
|
||||
right: auto;
|
||||
left: 7.6%;
|
||||
text-align: left;
|
||||
}
|
||||
#branding #s {
|
||||
float: left;
|
||||
}
|
||||
#branding .only-search + #access div {
|
||||
padding-right: 0;
|
||||
padding-left: 205px;
|
||||
}
|
||||
|
||||
|
||||
/* =Content
|
||||
----------------------------------------------- */
|
||||
.entry-title,
|
||||
.entry-header .entry-meta {
|
||||
padding-right: 0;
|
||||
padding-left: 76px;
|
||||
}
|
||||
.entry-content td,
|
||||
.comment-content td {
|
||||
padding: 6px 0 6px 10px;
|
||||
}
|
||||
.page-link span {
|
||||
margin-right: 0;
|
||||
margin-left: 6px;
|
||||
}
|
||||
.entry-meta .edit-link a {
|
||||
float: left;
|
||||
}
|
||||
/* Images */
|
||||
|
||||
.wp-caption .wp-caption-text,
|
||||
.gallery-caption {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
.wp-caption .wp-caption-text {
|
||||
padding: 10px 40px 5px 0px;
|
||||
}
|
||||
.wp-caption .wp-caption-text:before {
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
left: auto;
|
||||
right: 10px;
|
||||
}
|
||||
#content .gallery-columns-4 .gallery-item {
|
||||
padding-right:0;
|
||||
padding-left:2%;
|
||||
}
|
||||
|
||||
/* Author Info */
|
||||
.singular #author-info {
|
||||
margin: 2.2em -35.4% 0 -35.6%;
|
||||
}
|
||||
#author-avatar {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: -78px;
|
||||
}
|
||||
#author-description {
|
||||
float: right;
|
||||
margin-left: 0;
|
||||
margin-right: 108px;
|
||||
}
|
||||
/* Comments link */
|
||||
.entry-header .comments-link a {
|
||||
background-image: url(images/comment-bubble-rtl.png);
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
Post Formats Headings
|
||||
*/
|
||||
.singular .entry-title,
|
||||
.singular .entry-header .entry-meta {
|
||||
padding-left: 0;
|
||||
}
|
||||
.singular .entry-header .entry-meta {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
.singular .entry-meta .edit-link a {
|
||||
left: auto;
|
||||
right: 50px;
|
||||
}
|
||||
|
||||
|
||||
/* =Gallery
|
||||
----------------------------------------------- */
|
||||
|
||||
.format-gallery .gallery-thumb {
|
||||
float: right;
|
||||
margin: .375em 0 0 1.625em;
|
||||
}
|
||||
|
||||
|
||||
/* =Status
|
||||
----------------------------------------------- */
|
||||
|
||||
.format-status img.avatar {
|
||||
float: right;
|
||||
margin: 4px 0 2px 10px;
|
||||
}
|
||||
|
||||
|
||||
/* =Image
|
||||
----------------------------------------------- */
|
||||
|
||||
.indexed.format-image div.entry-meta {
|
||||
float: right;
|
||||
}
|
||||
/* =error404
|
||||
----------------------
|
||||
------------------------- */
|
||||
.error404 #main .widget {
|
||||
float: right;
|
||||
margin-right: auto;
|
||||
margin-left: 3.7%;
|
||||
}
|
||||
.error404 #main .widget_archive {
|
||||
margin-left: 0;
|
||||
}
|
||||
.error404 #main .widget_tag_cloud {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* =Showcase
|
||||
----------------------------------------------- */
|
||||
|
||||
article.intro .edit-link a {
|
||||
right: auto;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
/* Featured post */
|
||||
section.featured-post {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* Small featured post */
|
||||
section.featured-post .attachment-small-feature {
|
||||
float: left;
|
||||
margin: 0 0 1.625em -8.9%;
|
||||
right: auto;
|
||||
left: -15px;
|
||||
}
|
||||
article.feature-image.small {
|
||||
float: right;
|
||||
}
|
||||
article.feature-image.small .entry-summary p a {
|
||||
left:auto;
|
||||
right: -23.8%;
|
||||
padding: 9px 85px 9px 26px;
|
||||
}
|
||||
|
||||
/* Large featured post */
|
||||
section.feature-image.large .hentry {
|
||||
left:auto;
|
||||
right: 9%;
|
||||
margin: 1.625em 0 0 9%;
|
||||
}
|
||||
/* Featured Slider */
|
||||
.featured-posts .showcase-heading {
|
||||
padding-left: 0;
|
||||
padding-right: 8.9%;
|
||||
}
|
||||
.featured-posts section.featured-post {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
#content .feature-slider {
|
||||
right: auto;
|
||||
left: 8.9%;
|
||||
}
|
||||
.feature-slider li {
|
||||
float: right;
|
||||
}
|
||||
/* Recent Posts */
|
||||
section.recent-posts .other-recent-posts a[rel="bookmark"] {
|
||||
float: right;
|
||||
}
|
||||
section.recent-posts .other-recent-posts .comments-link a,
|
||||
section.recent-posts .other-recent-posts .comments-link > span {
|
||||
padding: 0.3125em 1em 0.3125em 0;
|
||||
left: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* =Attachments
|
||||
----------------------------------------------- */
|
||||
|
||||
/* =Navigation
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.nav-previous {
|
||||
float: right;
|
||||
}
|
||||
.nav-next {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* Singular navigation */
|
||||
#nav-single {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
#nav-single .nav-next {
|
||||
padding-left: 0;
|
||||
padding-right: .5em;
|
||||
}
|
||||
|
||||
|
||||
/* =Widgets
|
||||
----------------------------------------------- */
|
||||
|
||||
.widget ul ul {
|
||||
margin-left: 0;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
/* Twitter */
|
||||
.widget_twitter .timesince {
|
||||
margin-right: 0;
|
||||
margin-left: -10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* =Comments
|
||||
----------------------------------------------- */
|
||||
|
||||
.commentlist .children li.comment {
|
||||
border-left: none;
|
||||
border-right: 1px solid #ddd;
|
||||
-moz-border-radius: 3px 0 0 3px;
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
.commentlist .children li.comment .comment-meta {
|
||||
margin-left: 0;
|
||||
margin-right: 50px;
|
||||
}
|
||||
.commentlist .avatar {
|
||||
left: auto;
|
||||
right: -102px;
|
||||
}
|
||||
.commentlist > li:before {
|
||||
content: url(images/comment-arrow-rtl.png);
|
||||
left:auto;
|
||||
right: -21px;
|
||||
}
|
||||
.commentlist > li.pingback:before {
|
||||
content: '';
|
||||
}
|
||||
.commentlist .children .avatar {
|
||||
left: auto;
|
||||
right: 2.2em;
|
||||
}
|
||||
|
||||
/* Post author highlighting */
|
||||
.commentlist > li.bypostauthor:before {
|
||||
content: url(images/comment-arrow-bypostauthor-rtl.png);
|
||||
}
|
||||
|
||||
/* sidebar-page.php comments */
|
||||
/* Make sure we have room for our comment avatars */
|
||||
.page-template-sidebar-page-php .commentlist > li.comment,
|
||||
.page-template-sidebar-page-php.commentlist .pingback {
|
||||
margin-left: 0;
|
||||
margin-right: 102px;
|
||||
}
|
||||
|
||||
/* Comment Form */
|
||||
#respond .comment-form-author label,
|
||||
#respond .comment-form-email label,
|
||||
#respond .comment-form-url label,
|
||||
#respond .comment-form-comment label {
|
||||
left: auto;
|
||||
right: 4px;
|
||||
}
|
||||
#respond .comment-form-author label,
|
||||
#respond .comment-form-email label,
|
||||
#respond .comment-form-url label,
|
||||
#respond .comment-form-comment label {
|
||||
-webkit-box-shadow: -1px 2px 2px rgba(204,204,204,0.8);
|
||||
-moz-box-shadow: -1px 2px 2px rgba(204,204,204,0.8);
|
||||
box-shadow: -1px 2px 2px rgba(204,204,204,0.8);
|
||||
}
|
||||
#respond .comment-form-author .required,
|
||||
#respond .comment-form-email .required {
|
||||
left: auto;
|
||||
right: 75%;
|
||||
}
|
||||
#respond .form-submit {
|
||||
float: left;
|
||||
}
|
||||
#respond input#submit {
|
||||
left: auto;
|
||||
right: 30px;
|
||||
padding: 5px 22px 5px 42px;
|
||||
}
|
||||
#respond #cancel-comment-reply-link {
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
#cancel-comment-reply-link {
|
||||
right: auto;
|
||||
left: 1.625em;
|
||||
}
|
||||
|
||||
/* =Footer
|
||||
----------------------------------------------- */
|
||||
|
||||
/* Two Footer Widget Areas */
|
||||
#supplementary.two .widget-area {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 3.7%;
|
||||
}
|
||||
#supplementary.two .widget-area + .widget-area {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Three Footer Widget Areas */
|
||||
#supplementary.three .widget-area {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 3.7%;
|
||||
}
|
||||
#supplementary.three .widget-area + .widget-area + .widget-area {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Site Generator Line */
|
||||
#site-generator .sep {
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
|
||||
/* =Responsive Structure
|
||||
----------------------------------------------- */
|
||||
|
||||
@media (max-width: 800px) {
|
||||
/* Simplify the showcase template when small feature */
|
||||
section.featured-post .attachment-small-feature,
|
||||
.one-column section.featured-post .attachment-small-feature {
|
||||
float: right;
|
||||
}
|
||||
article.feature-image.small {
|
||||
float: left;
|
||||
}
|
||||
article.feature-image.small .entry-summary p a {
|
||||
right: 0;
|
||||
}
|
||||
.singular .entry-meta .edit-link a {
|
||||
left: auto;
|
||||
right: 0px;
|
||||
}
|
||||
/* Make sure we have room for our comment avatars */
|
||||
.commentlist > li.comment,
|
||||
.commentlist .pingback {
|
||||
margin-left: 0;
|
||||
margin-right: 102px;
|
||||
}
|
||||
/* No need to float footer widgets at this size */
|
||||
#colophon #supplementary .widget-area {
|
||||
margin-left: 0;
|
||||
}
|
||||
/* No need to float 404 widgets at this size */
|
||||
.error404 #main .widget {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 650px) {
|
||||
/* @media (max-width: 650px) Reduce font-sizes for better readability on smaller devices */
|
||||
#site-title,
|
||||
#site-description {
|
||||
margin-left: 0;
|
||||
}
|
||||
/* Talking avatars take up too much room at this size */
|
||||
.commentlist > li.comment,
|
||||
.commentlist > li.pingback {
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
.commentlist .children .avatar {
|
||||
left: auto;
|
||||
right: 2.2em;
|
||||
}
|
||||
/* Use the available space in the smaller comment form */
|
||||
#respond .comment-form-author .required,
|
||||
#respond .comment-form-email .required {
|
||||
left: auto;
|
||||
right: 95%;
|
||||
}
|
||||
#content .gallery-columns-3 .gallery-item {
|
||||
padding-right: 0;
|
||||
padding-left:2%;
|
||||
}
|
||||
}
|
||||
@media (max-width: 450px) {
|
||||
#content .gallery-columns-2 .gallery-item {
|
||||
padding-right:0;
|
||||
padding-left:4%;
|
||||
}
|
||||
}
|
||||
|
||||
/* =Print
|
||||
----------------------------------------------- */
|
||||
|
||||
@media print {
|
||||
#primary {
|
||||
float: right;
|
||||
}
|
||||
/* Comments */
|
||||
.commentlist .avatar {
|
||||
left: auto;
|
||||
right: 2.2em;
|
||||
}
|
||||
.commentlist li.comment .comment-meta {
|
||||
margin-left: 0;
|
||||
margin-right: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
/* =IE7
|
||||
----------------------------------------------- */
|
||||
|
||||
#ie7 section.recent-posts {
|
||||
margin-right: 0;
|
||||
margin-left: 7.6%;
|
||||
}
|
BIN
themes/myMap/screenshot.png
Normal file
After Width: | Height: | Size: 61 KiB |
56
themes/myMap/search.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying Search Results pages.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<?php the_map("map_canvas"); ?>
|
||||
<div id="main">
|
||||
<section id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'mymap' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
||||
</header>
|
||||
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
/* Include the Post-Format-specific template for the content.
|
||||
* If you want to overload this in a child theme then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content');
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<article id="post-0" class="post no-results not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php _e( 'Nothing Found', 'mymap' ); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'mymap' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
14
themes/myMap/searchform.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying search forms in Twenty Eleven
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
?>
|
||||
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
||||
<label for="s" class="assistive-text"><?php _e( 'Search', 'mymap' ); ?></label>
|
||||
<input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'mymap' ); ?>" />
|
||||
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'mymap' ); ?>" />
|
||||
</form>
|
34
themes/myMap/sidebar.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* The Sidebar containing the main widget area.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
||||
<div id="secondary" class="widget-area" role="complementary">
|
||||
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
|
||||
|
||||
<aside id="archives" class="widget">
|
||||
<h3 class="widget-title"><?php _e( 'Archives', 'mymap' ); ?></h3>
|
||||
<ul>
|
||||
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
|
||||
</ul>
|
||||
</aside>
|
||||
|
||||
<aside id="meta" class="widget">
|
||||
<h3 class="widget-title"><?php _e( 'Meta', 'mymap' ); ?></h3>
|
||||
<ul>
|
||||
<?php wp_register(); ?>
|
||||
<li><?php wp_loginout(); ?></li>
|
||||
<?php wp_meta(); ?>
|
||||
</ul>
|
||||
</aside>
|
||||
|
||||
<?php endif; // end sidebar widget area ?>
|
||||
</div><!-- #secondary .widget-area -->
|
46
themes/myMap/single-marker.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* The Template for displaying all single posts.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
$m_options = array();
|
||||
$id = get_the_ID();
|
||||
$m_options['origin']['lat'] = get_the_latitude($id);
|
||||
$m_options['origin']['lng'] = get_the_longitude($id);
|
||||
$m_options['origin']['zoom'] = 19;
|
||||
$m_options['mapType'] = 'SATELLITE';
|
||||
|
||||
the_map("map_canvas",false,$m_options);
|
||||
|
||||
?>
|
||||
|
||||
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
<nav id="nav-single">
|
||||
<h3 class="assistive-text"><?php _e( 'Post navigation', 'mymap' ); ?></h3>
|
||||
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'mymap' ) ); ?></span>
|
||||
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'mymap' ) ); ?></span>
|
||||
</nav><!-- #nav-single -->
|
||||
|
||||
<?php get_template_part( 'content', 'marker' ); ?>
|
||||
|
||||
<?php comments_template( '', true ); ?>
|
||||
|
||||
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
|
||||
<?php endwhile; // end of the loop. ?>
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
32
themes/myMap/single.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**
|
||||
* The Template for displaying all single posts.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<div id="main">
|
||||
<div id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<nav id="nav-single">
|
||||
<h3 class="assistive-text"><?php _e( 'Post navigation', 'mymap' ); ?></h3>
|
||||
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'mymap' ) ); ?></span>
|
||||
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'mymap' ) ); ?></span>
|
||||
</nav><!-- #nav-single -->
|
||||
|
||||
<?php get_template_part( 'content', 'single' ); ?>
|
||||
|
||||
<?php comments_template( '', true ); ?>
|
||||
|
||||
<?php endwhile; // end of the loop. ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</div><!-- #primary -->
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|
218
themes/myMap/style.css
Normal file
@ -0,0 +1,218 @@
|
||||
/*
|
||||
Theme Name: myMap
|
||||
Theme URI: http://www.soinumapa.net
|
||||
Author: Xavier Balderas
|
||||
Author URI: http://www.xavierbalderas.com
|
||||
Description: Base themplate for working with the Soundmap plugin.
|
||||
Version: 1.0
|
||||
License: GNU General Public License
|
||||
License URI: license.txt
|
||||
Tags: map, two columns
|
||||
*/
|
||||
|
||||
|
||||
body{
|
||||
background-color: #e8e8e8;
|
||||
}
|
||||
|
||||
#branding{
|
||||
width: 950px;
|
||||
margin:20px auto 5px;
|
||||
background-color: white;
|
||||
}
|
||||
#header-wrapper{
|
||||
padding: 20px 0px 0px;
|
||||
}
|
||||
#site-title{
|
||||
padding: 0 10px;
|
||||
}
|
||||
#main{
|
||||
width: 950px;
|
||||
margin: 5px auto 20px;
|
||||
background-color: white;
|
||||
}
|
||||
#primary{
|
||||
padding: 20px 10px;
|
||||
width: 600px;
|
||||
float: left;
|
||||
}
|
||||
#secondary{
|
||||
padding: 20px 10px;
|
||||
width: 310px;
|
||||
float: right;
|
||||
}
|
||||
.map_canvas{
|
||||
width:950px;
|
||||
height: 400px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#colophon{
|
||||
width: 950px;
|
||||
margin: 5px auto 20px;
|
||||
}
|
||||
.clear{
|
||||
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
/* Assistive text */
|
||||
.assistive-text {
|
||||
position: absolute !important;
|
||||
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
}
|
||||
#access a.assistive-text:active,
|
||||
#access a.assistive-text:focus {
|
||||
background: #eee;
|
||||
border-bottom: 1px solid #ddd;
|
||||
color: #1982d1;
|
||||
clip: auto !important;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
text-decoration: underline;
|
||||
top: 0;
|
||||
left: 7.6%;
|
||||
}
|
||||
|
||||
|
||||
/* =Menu
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
#access {
|
||||
background: #222; /* Show a solid color for older browsers */
|
||||
background: -moz-linear-gradient(#252525, #0a0a0a);
|
||||
background: -o-linear-gradient(#252525, #0a0a0a);
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */
|
||||
background: -webkit-linear-gradient(#252525, #0a0a0a);
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
|
||||
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
|
||||
clear: both;
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 0 auto 0px;
|
||||
width: 100%;
|
||||
}
|
||||
#access ul {
|
||||
font-size: 13px;
|
||||
list-style: none;
|
||||
margin: 0 0 0 -0.8125em;
|
||||
padding-left: 0;
|
||||
}
|
||||
#access li {
|
||||
float: left;
|
||||
position: relative;
|
||||
}
|
||||
#access a {
|
||||
color: #eee;
|
||||
display: block;
|
||||
line-height: 3.333em;
|
||||
padding: 0 1.2125em;
|
||||
text-decoration: none;
|
||||
}
|
||||
#access ul ul {
|
||||
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
|
||||
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
|
||||
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
|
||||
display: none;
|
||||
float: left;
|
||||
margin: 0;
|
||||
position: absolute;
|
||||
top: 3.333em;
|
||||
left: 0;
|
||||
width: 188px;
|
||||
z-index: 99999;
|
||||
}
|
||||
#access ul ul ul {
|
||||
left: 100%;
|
||||
top: 0;
|
||||
}
|
||||
#access ul ul a {
|
||||
background: #f9f9f9;
|
||||
border-bottom: 1px dotted #ddd;
|
||||
color: #444;
|
||||
font-size: 13px;
|
||||
font-weight: normal;
|
||||
height: auto;
|
||||
line-height: 1.4em;
|
||||
padding: 10px 10px;
|
||||
width: 168px;
|
||||
}
|
||||
#access li:hover > a,
|
||||
#access ul ul :hover > a,
|
||||
#access a:focus {
|
||||
background: #efefef;
|
||||
}
|
||||
#access li:hover > a,
|
||||
#access a:focus {
|
||||
background: #f9f9f9; /* Show a solid color for older browsers */
|
||||
background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
|
||||
background: -o-linear-gradient(#f9f9f9, #e5e5e5);
|
||||
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
|
||||
background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
|
||||
color: #373737;
|
||||
}
|
||||
#access ul li:hover > ul {
|
||||
display: block;
|
||||
}
|
||||
#access .current_page_item > a,
|
||||
#access .current_page_ancestor > a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Forms */
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
textarea {
|
||||
background: #fafafa;
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
|
||||
border: 1px solid #ddd;
|
||||
color: #888;
|
||||
}
|
||||
input[type=text]:focus,
|
||||
textarea:focus {
|
||||
color: #373737;
|
||||
}
|
||||
textarea {
|
||||
padding-left: 3px;
|
||||
width: 98%;
|
||||
}
|
||||
input[type=text] {
|
||||
padding: 3px;
|
||||
}
|
||||
input#s {
|
||||
background: url(images/search.png) no-repeat 5px 6px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
font-size: 14px;
|
||||
height: 22px;
|
||||
line-height: 1.2em;
|
||||
padding: 4px 10px 4px 28px;
|
||||
}
|
||||
input#searchsubmit {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
color: #1982d1;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:focus,
|
||||
a:active,
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* INFOWINDOW */
|
||||
|
||||
.marker-window{
|
||||
font-size: 75%;
|
||||
padding: 1em 1em 2em;
|
||||
}
|
66
themes/myMap/tag.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
/**
|
||||
* The template used to display Tag Archive pages
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Eleven
|
||||
* @since Twenty Eleven 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
<?php the_map("map_canvas"); ?>
|
||||
<div id="main">
|
||||
<section id="primary">
|
||||
<div id="content" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php
|
||||
printf( __( 'Tag Archives: %s', 'mymap' ), '<span>' . single_tag_title( '', false ) . '</span>' );
|
||||
?></h1>
|
||||
|
||||
<?php
|
||||
$tag_description = tag_description();
|
||||
if ( ! empty( $tag_description ) )
|
||||
echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );
|
||||
?>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<?php /* Start the Loop */ ?>
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php
|
||||
/* Include the Post-Format-specific template for the content.
|
||||
* If you want to overload this in a child theme then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<article id="post-0" class="post no-results not-found">
|
||||
<header class="entry-header">
|
||||
<h1 class="entry-title"><?php _e( 'Nothing Found', 'mymap' ); ?></h1>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'mymap' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
</div><!-- .entry-content -->
|
||||
</article><!-- #post-0 -->
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- #content -->
|
||||
</section><!-- #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
<?php get_footer(); ?>
|