- Importación inicial

- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
This commit is contained in:
David Arranz 2013-02-27 15:39:05 +00:00
parent 11e4ee5c14
commit f72df580c3
1117 changed files with 77560 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
doc/EJA_DEFINITIVA.pdf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 713 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 904 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
doc/img/abogados_fg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
doc/img/boton_bg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
doc/img/contacto_bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
doc/img/cv_bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
doc/img/elg_bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
doc/img/intdesk_bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
doc/img/linkedin-icon.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
doc/img/map-marker.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

21
www/404.php Normal file
View File

@ -0,0 +1,21 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
get_header(); ?>
<div class="clearfix">
<div class="page-404">
<?php get_search_form(); ?>
</div>
<div class="clearfix"></div>
<p class="page-404-description">
<a href="<?php echo home_url(); ?>" class="more-btn"><span><?php _e('Or start from the home page', 'wpv')?></span></a>
</p>
</div>
<?php get_footer(); ?>

39
www/archive.php Normal file
View File

@ -0,0 +1,39 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php
if ( is_day() ) : ?>
<?php printf( __( 'Daily Archives: <span>%s</span>', 'wpv' ), get_the_date() ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Monthly Archives: <span>%s</span>', 'wpv' ), get_the_date('F Y') ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Yearly Archives: <span>%s</span>', 'wpv' ), get_the_date('Y') ); ?>
<?php else : ?>
<?php _e( 'Blog Archives', 'wpv' ); ?>
<?php endif;
?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<?php get_template_part('loop', 'archive') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer(); ?>

83
www/attachment.php Normal file
View File

@ -0,0 +1,83 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php _e('Attachment', 'wpv')?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<div class="entry-attachment">
<?php if ( wp_attachment_is_image() ) :
$attachments = array_values( get_children( array( 'post_parent' => $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) );
foreach ( $attachments as $k => $attachment ) {
if ( $attachment->ID == $post->ID )
break;
}
$k++;
// If there is more than 1 image attachment in a gallery
if ( count( $attachments ) > 1 ) {
if ( isset( $attachments[ $k ] ) )
// get the URL of the next image attachment
$next_attachment_url = get_attachment_link( $attachments[ $k ]->ID );
else
// or get the URL of the first image attachment
$next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID );
} else {
// or, if there's only 1 image attachment, get the URL of the image
$next_attachment_url = wp_get_attachment_url();
}
?>
<p class="attachment"><a href="<?php echo $next_attachment_url; ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment" class="thumbnail"><?php
$attachment_size = apply_filters( 'wpv_attachment_size', 900 );
echo wp_get_attachment_image( $post->ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height.
?></a></p>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php previous_image_link( false ); ?></div>
<div class="nav-next"><?php next_image_link( false ); ?></div>
</div><!-- #nav-below -->
<?php else : ?>
<a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
<?php endif; ?>
</div><!-- .entry-attachment -->
<div class="entry-caption">
<?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?>
<?php
if ( wp_attachment_is_image() ) {
$metadata = wp_get_attachment_metadata();
printf( __( 'Original size is %s pixels', 'wpv'),
sprintf( '<a href="%1$s" title="%2$s">%3$s &times; %4$s</a>',
wp_get_attachment_url(),
esc_attr( __('Link to full-size image', 'wpv') ),
$metadata['width'],
$metadata['height']
)
);
}
?>
</div>
<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'wpv' ) ); ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer(); ?>

45
www/author.php Normal file
View File

@ -0,0 +1,45 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php
printf( __( 'Posts by %s', 'wpv' ), "<a href='".get_author_posts_url(get_the_author_meta( 'id' ))."' rel='me'>".get_the_author()."</a>" );
?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php if ( get_the_author_meta( 'description' ) ) : ?>
<div id="entry-author-info" class="wire-pad">
<div id="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), 60 ); ?>
</div><!-- #author-avatar -->
<div id="author-description">
<h4><?php printf( __( 'About %s', 'wpv' ), get_the_author() ); ?></h4>
<?php the_author_meta( 'description' ); ?>
</div><!-- #author-description -->
<div class="clearfix"></div>
</div><!-- #entry-author-info -->
<?php endif; ?>
<?php rewind_posts() ?>
<?php get_template_part('loop', 'category') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer(); ?>

10856
www/cache/configurable.css vendored Normal file

File diff suppressed because it is too large Load Diff

0
www/cache/gfonts.css vendored Normal file
View File

31
www/category.php Normal file
View File

@ -0,0 +1,31 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php
printf( __( 'Category: %s', 'wpv' ), '<span>' . single_cat_title( '', false ) . '</span>' );
?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<?php get_template_part('loop', 'category') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer(); ?>

93
www/comments.php Normal file
View File

@ -0,0 +1,93 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
?>
<?php if ( 'open' == $post->comment_status ) : ?>
<div id="comments">
<?php
$req = get_option('require_name_email'); // Checks if fields are required.
if ( 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']) ) {
die ( 'Please do not load this page directly. Thanks!' );
}
if ( ! empty($post->post_password) ):
if ( post_password_required() ) :
?>
<div class="nopassword"><?php _e('This post is password protected. Enter the password to view any comments.', 'wp_admin')?></div>
</div><!-- #comments -->
<?php
return;
endif;
endif;
?>
<?php if ( have_comments() ) : ?>
<?php // numbers of pings and comments
$ping_count = $comment_count = 0;
foreach ( $comments as $comment )
get_comment_type() == "comment" ? ++$comment_count : ++$ping_count;
?>
<?php if ( $comment_count ) : ?>
<div id="comments-list" class="comments">
<?php /* <h3><?php printf($comment_count > 1 ? '<span>%d</span> Comments' : '<span>One</span> Comment', $comment_count) ?></h3> */ ?>
<ol>
<?php wp_list_comments('type=comment&callback=po_comments'); ?>
</ol>
</div><!-- #comments-list .comments -->
<?php endif; /* if ( $comment_count ) */ ?>
<?php if ( $ping_count ) : ?>
<div id="trackbacks-list" class="comments">
<h3><?php printf($ping_count > 1 ? '<span>%d</span> Trackbacks' : '<span>One</span> Trackback', $ping_count) ?></h3>
<ol>
<?php wp_list_comments('type=pings'); ?>
</ol>
</div><!-- #trackbacks-list .comments -->
<?php endif /* if ( $ping_count ) */ ?>
<?php endif /* if ( $comments ) */ ?>
<h3 class="comments-title"><?php _e('Comments', 'wpv')?></h3>
<?php if ( post_password_required() ) : ?>
<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'wpv' ); ?></p>
</div><!-- #comments -->
<?php
return;
endif;
?>
<div class="respond-box">
<h4><?php _e('Post a comment', 'wpv')?></h4>
<div id="cancel-comment-reply"><?php cancel_comment_reply_link() ?></div>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p id="login-req"><?php printf(__('You must be <a href="%s" title="Log in">logged in</a> to post a comment.', 'shape'), get_option('siteurl') . '/wp-login.php?redirect_to=' . get_permalink() ) ?></p>
<?php else : ?>
<?php
comment_form(array(
'title_reply' => '',
'title_reply_to' => '',
'title_reply_to' => '',
'fields' => array(
'author' => '<div class="comment-form-author form-input">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
'<input id="author" name="author" type="text" required="required" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" placeholder="'.__('Name').' *" /></div>',
'email' => '<div class="comment-form-email form-input"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
'<input id="email" name="email" type="email" required="required" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" placeholder="'.__('Email').' *" /></div>',
'url' => '<div class="comment-form-url form-input"><label for="url">' . __( 'Website' ) . '</label>' .
'<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" placeholder="'.__('Website').'" /></div>',
),
'comment_field' => '<div class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><textarea id="comment" name="comment" required="required" aria-required="true" placeholder="'._x('Comment', 'noun').'"></textarea></div>',
'comment_notes_after' => '',
));
?>
<?php endif /* if ( get_option('comment_registration') && !$user_ID ) */ ?>
</div><!-- .respond-box -->
</div><!-- #comments -->
<?php endif /* if ( 'open' == $post->comment_status ) */ ?>

286
www/editor-style.css Normal file
View File

@ -0,0 +1,286 @@
/*
Theme Name: Progressio
*/
html .mceContentBody {
max-width:640px;
}
* {
font-family: Georgia, "Bitstream Charter", serif;
color: #444;
line-height: 1.5;
}
p,
dl,
td,
th,
ul,
ol,
blockquote {
font-size: 16px;
}
tr th,
thead th,
label,
tr th,
thead th {
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
}
pre {
font-family: "Courier 10 Pitch", Courier, monospace;
}
code, code var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
body, input, textarea {
font-size: 12px;
line-height: 18px;
}
hr {
background-color: #e7e7e7;
border:0;
height: 1px;
margin-bottom: 18px;
clear:both;
}
/* Text elements */
p {
margin-bottom: 18px;
}
ul {
list-style: square;
margin: 0 0 18px 1.5em;
}
ol {
list-style: decimal;
margin: 0 0 18px 1.5em;
}
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 0 24px 0;
}
dt {
font-weight: bold;
}
dd {
margin-bottom: 18px;
}
strong {
font-weight: bold;
color: #000;
}
cite,
em,
i {
font-style: italic;
border: none;
}
big {
font-size: 131.25%;
}
ins {
background: #ffffcc;
border: none;
color: #333;
}
del {
text-decoration: line-through;
color: #555;
}
blockquote {
font-style: italic;
padding: 0 3em;
}
blockquote cite,
blockquote em,
blockquote i {
font-style: normal;
}
pre {
background: #f7f7f7;
color: #222;
line-height: 18px;
margin-bottom: 18px;
padding: 1.5em;
}
abbr,
acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
ins {
text-decoration: none;
}
sup,
sub {
height: 0;
line-height: 1;
vertical-align: baseline;
position: relative;
font-size: 10px;
}
sup {
bottom: 1ex;
}
sub {
top: .5ex;
}
a:link {
color:#0066cc;
}
a:visited {
color:#743399;
}
a:active,
a:hover {
color: #ff4b33;
}
p,
ul,
ol,
dd,
pre,
hr {
margin-bottom:24px;
}
ul ul,
ol ol,
ul ol,
ol ul {
margin-bottom:0;
}
pre,
kbd,
tt,
var {
font-size: 15px;
line-height: 21px;
}
code {
font-size: 13px;
}
strong,
b,
dt,
th {
color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #000;
margin: 0 0 20px 0;
line-height: 1.5em;
font-weight: normal;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 25px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 15px;
}
h5 {
font-size: 12px;
}
h6 {
font-size: 20px;
}
table {
border: 1px solid #e7e7e7 !important;
text-align: left;
margin: 0 -1px 24px 0;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
tr th,
thead th {
border: none !important;
color: #888;
font-size: 12px;
font-weight: bold;
line-height: 18px;
padding: 9px 24px;
}
tr td {
border: none !important;
border-top: 1px solid #e7e7e7 !important;
padding: 6px 24px;
}
img {
margin: 0;
max-width: 640px;
}
.alignleft,
img.alignleft {
display: inline;
float: left;
margin-right: 24px;
margin-top: 4px;
}
.alignright,
img.alignright {
display: inline;
float: right;
margin-left: 24px;
margin-top: 4px;
}
.aligncenter,
img.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignleft,
img.alignright,
img.aligncenter {
margin-bottom: 12px;
}
.wp-caption {
border: none;
background: #f1f1f1;
color: #888;
font-size: 12px;
line-height: 18px;
text-align: center;
margin-bottom: 20px;
padding: 4px;
-moz-border-radius: 0;
-khtml-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
}
.wp-caption img {
margin: 5px;
}
.wp-caption p.wp-caption-text {
margin: 0 0 4px;
}
.wp-smiley {
margin:0;
}

41
www/footer.php Normal file
View File

@ -0,0 +1,41 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
?>
<?php if (!is_front_page() ) {?>
</div> <!-- .page-wrapper -->
</div><!-- / .container_16 -->
</div><!-- / #main (do not remove this comment) -->
<?php } ?>
<div class="footer-push"><!-- sticky footer push--></div>
<footer class="main-footer footer-helper <?php echo wpv_get_option('footer-helper-style')?> <?php if(wpv_get_option('footer-helper-classic')) echo 'classic'?>">
<?php if(wpv_get_option('has-footer-sidebars')): ?>
<div class="container_16">
<?php get_sidebar( 'footer' ); ?>
</div><!-- / .container_16 -->
<?php endif ?>
<div class="copyrights">
<div class="container_16">
<?php echo apply_filters('the_content', wpv_get_option( 'credits' )); ?>
</div>
</div><!-- / .copyrights -->
</footer>
</div>
</div><!-- / #container -->
<?php wp_footer(); ?>
</div><!-- / .box-layout -->
</body>
</html>

42
www/functions.php Normal file
View File

@ -0,0 +1,42 @@
<?php
require_once('wpv_common/wpv_framework.php');
new Wpv_Framework(array(
'name' => 'Progressio',
'slug' => 'progressio'
));
function language_selector_flags() {
$languages = icl_get_languages('skip_missing=0&orderby=code');
$uploads = wp_upload_dir();
if (!empty($languages)) {
$idiomas = array();
$orden_banderas = array('es', 'fr', 'en', 'ru');
foreach ($languages as $l) {
$imgflag = $l['country_flag_url'];
if ($l['language_code'] == 'es') {
$imgflag = $uploads['baseurl'] . '/2012/04/spanish_flag.jpg';
}
if ($l['language_code'] == 'en') {
$imgflag = $uploads['baseurl'] . '/2012/04/english_flag.jpg';
}
if ($l['language_code'] == 'fr') {
$imgflag = $imgflag = $uploads['baseurl'] . '/2012/04/french_flag.jpg';
}
/*if ($l['language_code'] == 'ru') {
$imgflag = $imgflag = $uploads['baseurl'] . '/2012/04/french_flag.jpg';
}*/
$l['country_flag_url'] = $imgflag;
$idiomas[$l['language_code']] = $l;
}
foreach ($orden_banderas as $bandera) {
echo '<a href="' . $idiomas[$bandera]['url'] . '">';
echo '<img src="' . $idiomas[$bandera]['country_flag_url'] . '" height="22" alt="' . $idiomas[$bandera]['language_code'] . '" width="22" class="flag"/>';
echo '</a>';
}
}
}

194
www/header.php Normal file
View File

@ -0,0 +1,194 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
?><!DOCTYPE html>
<!--[if lt IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html <?php language_attributes(); ?> class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html <?php language_attributes(); ?> class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html <?php language_attributes(); ?> class="no-ie no-js"> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<!--<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">-->
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged, $post;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'wpv' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<link rel="shortcut icon" type="image/x-icon" href="<?php wpvge('favicon_url')?>"/>
<script>
WPV_THEME_URI = '<?php echo WPV_THEME_URI ?>';
</script>
<?php wp_head(); ?>
<?php
if(is_object($post) && get_post_meta($post->ID, 'use-global-options', true) === 'false') {
$bgcolor = get_post_meta($post->ID, 'background_color', true);
$bgimage = get_post_meta($post->ID, 'background_image', true);
$bgrepeat = get_post_meta($post->ID, 'background_repeat', true);
$bgposition = get_post_meta($post->ID, 'background_position', true);
$page_style = '';
if(!empty($bgcolor)) {
$page_style .= "background-color:$bgcolor;";
}
if(!empty($bgimage)) {
$page_style .= "background-image:url('$bgimage');";
}
if(!empty($bgrepeat)) {
$page_style .= "background-repeat:$bgrepeat;";
}
if(!empty($bgposition)) {
$page_style .= "background-position:$bgposition;";
}
if(!empty($page_style) && (is_single() || is_page())) {
echo "<style>#main{ $page_style }</style>";
}
}
?>
</head>
<?php
global $post, $wpv_has_header_sidebars;
$has_header_slider = is_singular(array('page', 'post', 'portfolio')) && isset($post) && wpv_post_default('show_header_slider', 'has-header-slider');
$wpv_has_header_sidebars = is_singular(array('page', 'post', 'portfolio')) && isset($post) && wpv_post_default('show_header_sidebars', 'has-header-sidebars');
$has_page_header = is_singular(array('abogado', 'post', 'portfolio')) || (is_page() && wpv_post_default('show_page_header', 'has-page-header') );
$body_class = array();
$body_class_conditions = array(
'no-page-header' => !$has_page_header,
'has-page-header' => $has_page_header,
'cbox-share-twitter' => wpv_get_option('share-lightbox-twitter'),
'cbox-share-facebook' => wpv_get_option('share-lightbox-facebook'),
'boxed' => wpv_get_option('enable_box_layout'),
'narrow-slider' => ! wpv_get_option('has-fullwidth-slider'),
'fixed-header' => wpv_get_option('fixed-header'),
'has-header-slider' => $has_header_slider,
'has-header-sidebars' => $wpv_has_header_sidebars,
'no-header-slider' => !$has_header_slider,
'no-header-sidebars' => !$wpv_has_header_sidebars,
'no-footer-sidebars' => !wpv_get_option('has-footer-sidebars'),
'menu-top' => has_nav_menu('menu-top'),
'no-menu-top' => !has_nav_menu('menu-top'),
);
foreach($body_class_conditions as $class=>$cond) {
if($cond) {
$body_class[] = $class;
}
}
?>
<body <?php body_class(implode(' ', $body_class)); ?>>
<div id="container" class="main-container">
<div class="boxed-layout">
<div class="fixed-header-box">
<?php if (has_nav_menu('menu-top')) {?>
<div class="top-nav-box <?php echo wpv_get_option('header-helper-style')?> <?php if(wpv_get_option('header-helper-classic')) echo 'classic'?>">
<div class="container_16">
<div class="grid_16">
<nav class="top-nav">
<?php wp_nav_menu(array('fallback_cb' => '', 'theme_location' => 'menu-top' )); ?>
</nav>
<?php if(wpv_get_option('show-phone-top')): ?>
<span id="phone-num"><?php echo do_shortcode(wpv_get_option('phone-num-top'))?></span>
<?php endif ?>
</div>
</div>
</div>
<?php } ?>
<header class="main-header header-helper <?php echo wpv_get_option('header-helper-style')?> <?php if(wpv_get_option('header-helper-classic')) echo 'classic'?>">
<div class="container_16">
<div class="grid_5">
<?php $logo = wpv_get_option('custom-header-logo') ?>
<a href="<?php echo home_url() ?>/" title="<?php bloginfo( 'name' ) ?>" class="logo a-reset"><?php
if($logo):
?>
<img src="<?php echo $logo;?>" alt="<?php bloginfo('name')?>"/>
<?php
else:
bloginfo( 'name' );
endif;
?></a>
</div><!-- / .grid_5 -->
<div class="grid_11">
<?php if(wpv_get_option('show_linkedin')): ?>
<div class="icons-top2">
<a href="<?php wpvge('linkedin-link')?>" id="ilinkedin" target="_blank"></a>
</div>
<?php endif ?>
<nav class="top-nav">
<?php language_selector_flags(); ?>
<?php /*wp_nav_menu(array('fallback_cb' => 'wp_page_menu', 'theme_location' => 'menu-top' ));*/ ?>
</nav>
<nav class="main-nav">
<?php wp_nav_menu(array('fallback_cb' => 'wp_page_menu', 'theme_location' => 'menu-header' )); ?>
</nav>
</div><!-- / .grid_11 -->
</div><!-- / .container_16 -->
</header>
<div class="clearfix"></div>
</div><!-- / .fixed-header-box -->
</div>
<?php
/*
* some pages may not have a slider enabled, check for that
*/
if( $has_header_slider ):
$slider_effect = wpv_post_default('slider-effect', 'header-slider-effect');
$slider_style = get_slider_design($slider_effect);
$visiblegrid = wpv_get_option('header-slider-visiblegrid') ? ' visiblegrid' : '';
$halfwidth = intval( wpv_post_default('slider-fullwidth', 'has-fullwidth-slider') == 'true' ) ? ' fullwidth' : ' halfwidth';
?>
<div class="dgrid <?php echo $halfwidth.$visiblegrid?>">
<div class="header-slider-wrapper style-<?php echo $slider_style ?> animation-<?php echo $slider_effect?> <?php echo $halfwidth.$visiblegrid?> slider-helper <?php echo wpv_get_option('slider-helper-style')?> <?php if(wpv_get_option('slider-helper-classic')) echo 'classic'?>">
<?php get_template_part('slider', 'header') ?>
</div>
</div>
<?php endif ?>
<div class="boxed-layout">
<div class="slider-helper <?php echo wpv_get_option('slider-helper-style')?> <?php if(wpv_get_option('slider-helper-classic')) echo 'classic'?>">
<div class="slider-shadow"></div>
</div>
<?php if (!is_front_page() ) {?>
<!-- #main (do not remove this comment) -->
<div id="main" role="main" class="body-helper <?php echo wpv_get_option('body-helper-style')?> <?php if(wpv_get_option('body-helper-classic')) echo 'classic'?>">
<div class="container_16">
<div class="page-wrapper">
<?php } ?>

58
www/index.php Normal file
View File

@ -0,0 +1,58 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
get_header(); ?>
<header class="page-header">
<h1><?php
$format = get_query_var('format_filter');
echo $format?
sprintf(__('Post format: %s', 'wpv'), $format) :
__('Blog', 'wpv');
?></h1>
</header>
<div class="page-wrapper clearfix">
<article class="full">
<div class="page-content">
<?php
if($format) {
$formats = array('aside', 'audio', 'video', 'link', 'quote', 'image');
$post_formats_longname = array();
$query = array(
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
)
)
);
if($format == 'standard') {
foreach($formats as $f) {
$post_formats_longname[] = 'post-format-'.$f;
}
$query['tax_query'][0]['terms'] = $post_formats_longname;
$query['tax_query'][0]['operator'] = 'NOT IN';
} else {
$query['tax_query'][0]['terms'] = array('post-format-'.$format);
$query['tax_query'][0]['operator'] = 'IN';
}
query_posts($query);
unset($GLOBALS['wp_the_query']);
$GLOBALS['wp_the_query'] =& $GLOBALS['wp_query'];
}
?>
<?php get_template_part( 'loop', 'index' ); ?>
</div><!-- #post-## -->
</article>
</div>
<?php get_footer(); ?>

BIN
www/languages/nl_NL.mo Normal file

Binary file not shown.

785
www/languages/nl_NL.po Normal file
View File

@ -0,0 +1,785 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: Fresco Records\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: K Smidt <smidtonline@me.com>\n"
"Language-Team: Ko Smidt <info@frescorecords.nl>\n"
"MIME-Version: 1.0\n"
"X-Poedit-Language: Dutch\n"
"X-Poedit-Country: NETHERLANDS\n"
"X-Poedit-Basepath: U:\\fresco\\website\\2011\\progressio-premium-business-wordpress-theme\\progressio\\progressio\\languages\n"
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "% Comments"
msgstr "% Reacties"
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "%2$s <span class=\"meta-sep\">|</span> by %3$s"
msgstr "%2$s <span class=\"meta-sep\">|</span> door %3$s"
#. Text in function
#: progressio/wpv_common/helpers/base.php:179
#: progressio/wpv_common/helpers/base.php:205
msgid "(Edit)"
msgstr "(Bewerken)"
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "1 Comment"
msgstr "1 reactie"
#. Text in function
#: progressio/author.php:29
msgid "About %s"
msgstr "Over %s"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:24
msgid "Actions"
msgstr "Acties"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:7
msgid "Address:"
msgstr "Adres:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-widget.php:13
#: progressio/wpv_common/widgets/tpl/advertisement-widget.php:14
msgid "Advertisment"
msgstr "Advertentie"
#. Text in echo
#: progressio/wpv_theme/shortcode_templates/portfolio.php:12
msgid "All"
msgstr "Alles"
#. Text in echo
#: progressio/attachment.php:15
msgid "Attachment"
msgstr "Bijlage"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:35
msgid "Author Description (optional):"
msgstr "Beschrijving auteur (optioneel):"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:24
msgid "Author:"
msgstr "Auteur:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:38
msgid "Auto popup the info?"
msgstr "Auto pop de info?"
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
#: progressio/wpv_common/admin/helpers/config_generator/config-import.php:8
msgid "Available skins"
msgstr "Beschikbare skins"
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:123
msgid "Available templates"
msgstr "Beschikbare sjablonen"
#. Text in echo
#: progressio/single.php:28
#: progressio/index.php:10
msgid "Blog"
msgstr "Blog"
#. Text in echo
#: progressio/archive.php:23
msgid "Blog Archives"
msgstr "Blogarchief"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:53
msgid "Body content width:"
msgstr "Body breedte inhoud:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:25
msgid "Bounce"
msgstr "Bounce"
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Cannot delete file."
msgstr "Kan het bestand niet verwijderen."
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Cannot save file."
msgstr "Kan het bestand niet bewaren."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:30
msgid "Categories:"
msgstr "Categoriën:"
#. Text in function
#: progressio/category.php:15
msgid "Category: %s"
msgstr "Categorie: %s"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:9
msgid "Choose either an address or latitute and logtitude"
msgstr "Kies of een adres of een lengte en breedte"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:26
msgid "Combo"
msgstr "Combo"
#. Text in echo
#: progressio/comments.php:55
msgid "Comments"
msgstr "Reacties"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:32
msgid "Content for the marker:"
msgstr "Content for the marker:"
#. Text in function
#: progressio/attachment.php:75
msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
msgstr "Lees verder <span class=\"meta-nav\">&rarr;</span>"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/sidebar_management.php:5
msgid "Current sidebars"
msgstr "Huidige sidebars"
#. Text in function
#: progressio/archive.php:17
msgid "Daily Archives: <span>%s</span>"
msgstr "Dagelijke archieven: <span>%s</span>"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/config-import.php:11
msgid "Delete"
msgstr "Verwijderen"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:23
msgid "Description"
msgstr "Beschrijving"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:21
msgid "Disable Post Thumbnail?"
msgstr "Uitschakelen thumbnail bericht?"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:14
msgid "Documentation"
msgstr "Documentatie"
#. Text in function
#: progressio/wpv_common/helpers/base.php:232
msgid "Edit"
msgstr "Bewerken"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:19
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:20
msgid "Email (required)"
msgstr "E-mail (verplicht)"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:31
msgid "Enable Social Icon:"
msgstr "Inschakelen social icoon:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:16
msgid "Exclude:"
msgstr "Uitsluiten:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:23
msgid "Fade"
msgstr "Fade"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:15
msgid "Flickr ID (<a href=\"http://www.idgettr.com\" target=\"_blank\">idGettr</a>):"
msgstr "Flickr ID (<a href=\"http://www.idgettr.com\" target=\"_blank\">idGettr</a>):"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:69
msgid "Footer widget areas"
msgstr "Footer widget gebied"
#. Text in function
#: progressio/wpv_theme/helpers/base.php:136
msgid "Gallery"
msgstr "Gallery"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:18
msgid "HTML"
msgstr "HTML"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:81
msgid "Header height:"
msgstr "Header hoogte:"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:95
msgid "Header widget areas"
msgstr "Header widget gebied"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:42
msgid "Height:"
msgstr "Hoogte:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:7
msgid "How many ad spots to display?"
msgstr "Hoeveel ad spots tonen?"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:7
msgid "How many authors to display?"
msgstr "Hoeveel authors weergeven?"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:54
msgid "How many custom icons to add?"
msgstr "Hoeveel custom icons toevoegen?"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:17
msgid "How many tweets to display?"
msgstr "Hoeveel tweets weergeven?"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:7
msgid "Icon Alt Title:"
msgstr "Icon Alt Title:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:21
msgid "Icon Hover Animation:"
msgstr "Icon Hover Animation:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:12
msgid "Icon Package:"
msgstr "Icon Package:"
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:81
msgid "Icon:"
msgstr "Icon:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactinfo-config.php:2
msgid "Icons Color:"
msgstr "Icons kleuren:"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/templates.php:13
msgid "If you use the same name as a previously saved template it will overwrite the latter."
msgstr "Als je dezelfde naam gebruikt als een eerder bewaard sjabloon, dan wordt die overschreven."
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:17
msgid "Image"
msgstr "Afbeelding"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:27
msgid "Image URL:"
msgstr "URL afbeelding:"
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/upload-basic.php:1
msgid "Insert"
msgstr "Invoegen"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:27
msgid "Latest"
msgstr "Nieuwste"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:13
msgid "Latitude:"
msgstr "Breedte"
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "Leave a comment"
msgstr "Plaats een reactie"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:39
msgid "Left body sidebar"
msgstr "Sidebar body links"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:25
msgid "Length of Description to show:"
msgstr "Te tonen lengte van beschrijving:"
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Lightbox"
msgstr "Lightbox"
#. Text in function
#: progressio/attachment.php:60
msgid "Link to full-size image"
msgstr "Link naar grote afbeelding"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:31
msgid "Link:"
msgstr "Link:"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:7
msgid "Loading"
msgstr "Bezig met laden"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/templates.php:18
msgid "Loading..."
msgstr "Bezig met laden..."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:18
msgid "Longitude:"
msgstr "Lengte"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:25
msgid "Method for display your photos:"
msgstr "Manier van weergeven foto's:"
#. Text in function
#: progressio/archive.php:19
msgid "Monthly Archives: <span>%s</span>"
msgstr "Maandelijkse archieven: <span>%s</span>"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:14
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:15
msgid "Name (required)"
msgstr "Naam (verplicht)"
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:71
msgid "Name:"
msgstr "Naam:"
#. Text in echo
#: progressio/wpv_common/shortcodes/slider.php:78
msgid "Next"
msgstr "Volgende"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:16
msgid "Note: Please input <strong>full url</strong> <br/> (e.g. <code>http://example.com</code>)"
msgstr "N.B.: Voeg in <strong>volledige url</strong> <br/> (b.v. <code>http://example.com</code>)"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:41
msgid "Note: Please input FULL URL <br/>(e.g. <code>http://example.com</code>)"
msgstr "N.B.: Voer a.u.b. de volledige url in<br/>(b.v. <code>http://example.com</code>)"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:20
msgid "Number of photo to show:"
msgstr "Aantal te tonen foto's:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:7
msgid "Number of posts to show:"
msgstr "Aantal te tonen berichten:"
#. Text in echo
#: progressio/404.php:17
msgid "Or start from the home page"
msgstr "Of begin vanaf de startpagina"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:12
msgid "Order posts by:"
msgstr "Sorteer berichten op:"
#. Text in function
#: progressio/attachment.php:60
msgid "Original size is %s pixels"
msgstr "Originele afmeting is %s pixels"
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Page"
msgstr "Pagina"
#. Text in function
#: progressio/header.php:17
msgid "Page %s"
msgstr "Pagina's"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:11
msgid "Page ID"
msgstr "Page ID"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:19
msgid "Page IDs, separated by commas."
msgstr "Page IDs, gescheiden door komma's."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:9
msgid "Page order"
msgstr "Paginavolgorde"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:10
msgid "Page title"
msgstr "Paginatitel"
#. Text in function
#: progressio/single-video.php:17
#: progressio/page.php:54
#: progressio/single-audio.php:71
#: progressio/single-standard.php:57
#: progressio/single-standard.php:62
msgid "Pages:"
msgstr "Pagina's:"
#. Text in echo
#: progressio/wpv_common/helpers/base.php:205
msgid "Pingback:"
msgstr "Pingback:"
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Portfolio"
msgstr "Portfolio"
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Post"
msgstr "Bericht"
#. Text in echo
#: progressio/comments.php:65
msgid "Post a comment"
msgstr "Plaats een reactie"
#. Text in function
#: progressio/index.php:10
msgid "Post format: %s"
msgstr "Format bericht: %s"
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "Posted in %1$s"
msgstr "Geplaatst in %1$s"
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "Posted in %1$s <span class=\"meta-sep\">|</span> tags %2$s"
msgstr "Geplaatst in %1$s <span class=\"meta-sep\">|</span> tags %2$s"
#. Text in function
#: progressio/author.php:15
msgid "Posts by %s"
msgstr "Geplaatst door %s"
#. Text in echo
#: progressio/wpv_common/shortcodes/slider.php:77
msgid "Previous"
msgstr "Vorige"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:22
msgid "Query (optional):"
msgstr "Query (optioneel):"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:27
msgid "Query uses <a href='http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search' target='_blank'>Twitter's Search API</a>, so you can display any tweets you like."
msgstr "Query gebruikt <a href='http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search' target='_blank'>Twitter's Search API</a>, je kunt elke soort tweets weergeven."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:28
msgid "Random"
msgstr "Willekeurig"
#. Text in function
#: progressio/single-video.php:17
#: progressio/single-audio.php:71
#: progressio/single-standard.php:62
msgid "Read More"
msgstr "Lees meer"
#. Text in function
#: progressio/slider.php:110
msgid "Read more"
msgstr "Lees meer"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:60
msgid "Right body sidebar"
msgstr "Sidebar body rechts"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:24
msgid "Scale"
msgstr "Schaal"
#. Text in echo
#: progressio/searchform.php:4
msgid "Search"
msgstr "Zoeken"
#. Text in function
#: progressio/search.php:15
msgid "Search Results for: %s"
msgstr "Zoekresultaten voor: %s"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-config.php:7
msgid "Send emails to:"
msgstr "Stuur e-mails naar:"
#. Text in echo
#: progressio/wpv_theme/shortcode_templates/portfolio.php:10
msgid "Show:"
msgstr "Laat zien:"
#. Text in function
#: progressio/wpv_theme/helpers/base.php:136
msgid "Showcase"
msgstr "Showcase"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:48
msgid "Site width:"
msgstr "Breedte site:"
#. Text in echo
#: progressio/header.php:127
msgid "Skip to content"
msgstr "Laat inhoud weg"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:15
msgid "Slide type"
msgstr "Type slide"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:88
msgid "Slider height:"
msgstr "Hoogte silder:"
#. Text in echo
#: progressio/search.php:31
msgid "Sorry, nothing found"
msgstr "Sorry, niks gevonden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:7
msgid "Sort by:"
msgstr "Sorteer op:"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:74
msgid "Subfooter"
msgstr "Subfooter"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:29
msgid "Submit"
msgstr "Verstuur"
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Success."
msgstr "Succes."
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:15
msgid "Support"
msgstr "Support"
#. Text in function
#: progressio/tag.php:15
msgid "Tag Archives: %s"
msgstr "Archieven Tag: %s"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:73
msgid "The quick brown fox jumps over the lazy dog"
msgstr "The quick brown fox jumps over the lazy dog"
#. Text in echo
#: progressio/comments.php:57
msgid "This post is password protected. Enter the password to view any comments."
msgstr "Dit bericht is beveiligd met een wachtwoord. Voer het wachtwoord in om de reacties te kunnen zien."
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:21
msgid "Thumbnail"
msgstr "Thumbnail"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:22
msgid "Title"
msgstr "Titel"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:2
#: progressio/wpv_common/widgets/tpl/subpages-config.php:2
#: progressio/wpv_common/widgets/tpl/gmap-config.php:2
#: progressio/wpv_common/widgets/tpl/contactform-config.php:2
#: progressio/wpv_common/widgets/tpl/flickr-config.php:2
#: progressio/wpv_common/widgets/tpl/social-config.php:2
#: progressio/wpv_common/widgets/tpl/posts-config.php:2
#: progressio/wpv_common/widgets/tpl/twitter-config.php:2
#: progressio/wpv_common/widgets/tpl/authors-config.php:2
msgid "Title:"
msgstr "Titel:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:7
msgid "Type:"
msgstr "Soort:"
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:47
#: progressio/wpv_common/widgets/tpl/social-config.php:76
msgid "URL:"
msgstr "URL:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:7
msgid "Usernames (separate with comas):"
msgstr "Gebruikersnamen (gescheiden door komma's):"
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "View all posts by %s"
msgstr "Bekijk alle berichten van %s"
#. Text in function
#: progressio/archive.php:21
msgid "Yearly Archives: <span>%s</span>"
msgstr "Jaarlijkse archieven: <span>%s</span>"
#. Text in echo
#: progressio/wpv_common/helpers/base.php:186
msgid "Your comment is awaiting moderation."
msgstr "Je reactie wacht op goedkeuring."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:8
msgid "Your message was successfully sent. <strong>Thank You!</strong>"
msgstr "Je bericht is succesvol verstuurd."
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:23
msgid "Zoom level:"
msgstr "Zoom level:"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:25
msgid "about %d days ago"
msgstr "ongeveer %d dagen geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:23
msgid "about %d hours ago"
msgstr "ongeveer %d uren geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:21
msgid "about %d minutes ago"
msgstr "ongeveer %d minuten geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:19
msgid "about %d seconds ago"
msgstr "ongeveer %d seconden geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:24
msgid "about a day ago"
msgstr "ongeveer een dag geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:20
msgid "about a minute ago"
msgstr "ongeveer een minuut geleden"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:22
msgid "about an hour ago"
msgstr "ongeveer een uur geleden"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:69
msgid "font size"
msgstr "lettergrootte"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:12
msgid "height and width of avatar if displayed (48px max)(optional)"
msgstr "hoogte en breedte van de avatar indien weergegeven (48px max) (optioneel)"
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:70
msgid "line height"
msgstr "regelhoogte"
#. Text in echo
#: progressio/single-audio.php:30
msgid "mute"
msgstr "dempen"
#. Text in echo
#: progressio/single-audio.php:28
msgid "pause"
msgstr "pauze"
#. Text in echo
#: progressio/single-audio.php:27
msgid "play"
msgstr "afspelen"
#. Text in echo
#: progressio/single-audio.php:29
msgid "stop"
msgstr "stop"
#. Text in echo
#: progressio/single-audio.php:31
msgid "unmute"
msgstr "aanzetten"
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:26
msgid "view tweet on twitter"
msgstr "bekijk de tweet op twitter"

View File

@ -0,0 +1,775 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "% Comments"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "%2$s <span class=\"meta-sep\">|</span> by %3$s"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:179
#: progressio/wpv_common/helpers/base.php:205
msgid "(Edit)"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "1 Comment"
msgstr ""
#. Text in function
#: progressio/author.php:29
msgid "About %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:24
msgid "Actions"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:7
msgid "Address:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-widget.php:13
#: progressio/wpv_common/widgets/tpl/advertisement-widget.php:14
msgid "Advertisment"
msgstr ""
#. Text in echo
#: progressio/wpv_theme/shortcode_templates/portfolio.php:12
msgid "All"
msgstr ""
#. Text in echo
#: progressio/attachment.php:15
msgid "Attachment"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:35
msgid "Author Description (optional):"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:24
msgid "Author:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:38
msgid "Auto popup the info?"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
#: progressio/wpv_common/admin/helpers/config_generator/config-import.php:8
msgid "Available skins"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:123
msgid "Available templates"
msgstr ""
#. Text in echo
#: progressio/single.php:28
#: progressio/index.php:10
msgid "Blog"
msgstr ""
#. Text in echo
#: progressio/archive.php:23
msgid "Blog Archives"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:53
msgid "Body content width:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:25
msgid "Bounce"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Cannot delete file."
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Cannot save file."
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:30
msgid "Categories:"
msgstr ""
#. Text in function
#: progressio/category.php:15
msgid "Category: %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:9
msgid "Choose either an address or latitute and logtitude"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:26
msgid "Combo"
msgstr ""
#. Text in echo
#: progressio/comments.php:55
msgid "Comments"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:32
msgid "Content for the marker:"
msgstr ""
#. Text in function
#: progressio/attachment.php:75
msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/sidebar_management.php:5
msgid "Current sidebars"
msgstr ""
#. Text in function
#: progressio/archive.php:17
msgid "Daily Archives: <span>%s</span>"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/config-import.php:11
msgid "Delete"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:23
msgid "Description"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:21
msgid "Disable Post Thumbnail?"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:14
msgid "Documentation"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:232
msgid "Edit"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:19
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:20
msgid "Email (required)"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:31
msgid "Enable Social Icon:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:16
msgid "Exclude:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:23
msgid "Fade"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:15
msgid "Flickr ID (<a href=\"http://www.idgettr.com\" target=\"_blank\">idGettr</a>):"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:69
msgid "Footer widget areas"
msgstr ""
#. Text in function
#: progressio/wpv_theme/helpers/base.php:136
msgid "Gallery"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:18
msgid "HTML"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:81
msgid "Header height:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:95
msgid "Header widget areas"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:42
msgid "Height:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:7
msgid "How many ad spots to display?"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/authors-config.php:7
msgid "How many authors to display?"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:54
msgid "How many custom icons to add?"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:17
msgid "How many tweets to display?"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:7
msgid "Icon Alt Title:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:21
msgid "Icon Hover Animation:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:12
msgid "Icon Package:"
msgstr ""
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:81
msgid "Icon:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactinfo-config.php:2
msgid "Icons Color:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/templates.php:13
msgid "If you use the same name as a previously saved template it will overwrite the latter."
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:17
msgid "Image"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:27
msgid "Image URL:"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/upload-basic.php:1
msgid "Insert"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:27
msgid "Latest"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:13
msgid "Latitude:"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:230
msgid "Leave a comment"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:39
msgid "Left body sidebar"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:25
msgid "Length of Description to show:"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Lightbox"
msgstr ""
#. Text in function
#: progressio/attachment.php:60
msgid "Link to full-size image"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:31
msgid "Link:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:7
msgid "Loading"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/templates.php:18
msgid "Loading..."
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:18
msgid "Longitude:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:25
msgid "Method for display your photos:"
msgstr ""
#. Text in function
#: progressio/archive.php:19
msgid "Monthly Archives: <span>%s</span>"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:14
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:15
msgid "Name (required)"
msgstr ""
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:71
msgid "Name:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/shortcodes/slider.php:78
msgid "Next"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:16
msgid "Note: Please input <strong>full url</strong> <br/> (e.g. <code>http://example.com</code>)"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:41
msgid "Note: Please input FULL URL <br/>(e.g. <code>http://example.com</code>)"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:20
msgid "Number of photo to show:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:7
msgid "Number of posts to show:"
msgstr ""
#. Text in echo
#: progressio/404.php:17
msgid "Or start from the home page"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/posts-config.php:12
msgid "Order posts by:"
msgstr ""
#. Text in function
#: progressio/attachment.php:60
msgid "Original size is %s pixels"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Page"
msgstr ""
#. Text in function
#: progressio/header.php:17
msgid "Page %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:11
msgid "Page ID"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:19
msgid "Page IDs, separated by commas."
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:9
msgid "Page order"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:10
msgid "Page title"
msgstr ""
#. Text in function
#: progressio/single-video.php:17
#: progressio/page.php:54
#: progressio/single-audio.php:71
#: progressio/single-standard.php:57
#: progressio/single-standard.php:62
msgid "Pages:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/helpers/base.php:205
msgid "Pingback:"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Portfolio"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/helpers/config_generator/social.php:1
msgid "Post"
msgstr ""
#. Text in echo
#: progressio/comments.php:65
msgid "Post a comment"
msgstr ""
#. Text in function
#: progressio/index.php:10
msgid "Post format: %s"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "Posted in %1$s"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "Posted in %1$s <span class=\"meta-sep\">|</span> tags %2$s"
msgstr ""
#. Text in function
#: progressio/author.php:15
msgid "Posts by %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/shortcodes/slider.php:77
msgid "Previous"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:22
msgid "Query (optional):"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:27
msgid "Query uses <a href='http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search' target='_blank'>Twitter's Search API</a>, so you can display any tweets you like."
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:28
msgid "Random"
msgstr ""
#. Text in function
#: progressio/single-video.php:17
#: progressio/single-audio.php:71
#: progressio/single-standard.php:62
msgid "Read More"
msgstr ""
#. Text in function
#: progressio/slider.php:110
msgid "Read more"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:60
msgid "Right body sidebar"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/social-config.php:24
msgid "Scale"
msgstr ""
#. Text in echo
#: progressio/searchform.php:4
msgid "Search"
msgstr ""
#. Text in function
#: progressio/search.php:15
msgid "Search Results for: %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-config.php:7
msgid "Send emails to:"
msgstr ""
#. Text in echo
#: progressio/wpv_theme/shortcode_templates/portfolio.php:10
msgid "Show:"
msgstr ""
#. Text in function
#: progressio/wpv_theme/helpers/base.php:136
msgid "Showcase"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:48
msgid "Site width:"
msgstr ""
#. Text in echo
#: progressio/header.php:127
msgid "Skip to content"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/slide.php:15
msgid "Slide type"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:88
msgid "Slider height:"
msgstr ""
#. Text in echo
#: progressio/search.php:31
msgid "Sorry, nothing found"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/subpages-config.php:7
msgid "Sort by:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/general-layout.php:74
msgid "Subfooter"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:29
msgid "Submit"
msgstr ""
#. Text in function
#: progressio/wpv_common/admin/ajax/base.php:1
msgid "Success."
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/title.php:15
msgid "Support"
msgstr ""
#. Text in function
#: progressio/tag.php:15
msgid "Tag Archives: %s"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:73
msgid "The quick brown fox jumps over the lazy dog"
msgstr ""
#. Text in echo
#: progressio/comments.php:57
msgid "This post is password protected. Enter the password to view any comments."
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:21
msgid "Thumbnail"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/portfolio_gallery.php:22
msgid "Title"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/advertisement-config.php:2
#: progressio/wpv_common/widgets/tpl/subpages-config.php:2
#: progressio/wpv_common/widgets/tpl/gmap-config.php:2
#: progressio/wpv_common/widgets/tpl/contactform-config.php:2
#: progressio/wpv_common/widgets/tpl/flickr-config.php:2
#: progressio/wpv_common/widgets/tpl/social-config.php:2
#: progressio/wpv_common/widgets/tpl/posts-config.php:2
#: progressio/wpv_common/widgets/tpl/twitter-config.php:2
#: progressio/wpv_common/widgets/tpl/authors-config.php:2
msgid "Title:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/flickr-config.php:7
msgid "Type:"
msgstr ""
#. Text in function
#: progressio/wpv_common/widgets/tpl/social-config.php:47
#: progressio/wpv_common/widgets/tpl/social-config.php:76
msgid "URL:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:7
msgid "Usernames (separate with comas):"
msgstr ""
#. Text in function
#: progressio/wpv_common/helpers/base.php:406
msgid "View all posts by %s"
msgstr ""
#. Text in function
#: progressio/archive.php:21
msgid "Yearly Archives: <span>%s</span>"
msgstr ""
#. Text in echo
#: progressio/wpv_common/helpers/base.php:186
msgid "Your comment is awaiting moderation."
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/contactform-widget.php:8
msgid "Your message was successfully sent. <strong>Thank You!</strong>"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/gmap-config.php:23
msgid "Zoom level:"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:25
msgid "about %d days ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:23
msgid "about %d hours ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:21
msgid "about %d minutes ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:19
msgid "about %d seconds ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:24
msgid "about a day ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:20
msgid "about a minute ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:22
msgid "about an hour ago"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:69
msgid "font size"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-config.php:12
msgid "height and width of avatar if displayed (48px max)(optional)"
msgstr ""
#. Text in echo
#: progressio/wpv_common/admin/helpers/config_generator/font.php:70
msgid "line height"
msgstr ""
#. Text in echo
#: progressio/single-audio.php:30
msgid "mute"
msgstr ""
#. Text in echo
#: progressio/single-audio.php:28
msgid "pause"
msgstr ""
#. Text in echo
#: progressio/single-audio.php:27
msgid "play"
msgstr ""
#. Text in echo
#: progressio/single-audio.php:29
msgid "stop"
msgstr ""
#. Text in echo
#: progressio/single-audio.php:31
msgid "unmute"
msgstr ""
#. Text in echo
#: progressio/wpv_common/widgets/tpl/twitter-widget.php:26
msgid "view tweet on twitter"
msgstr ""

47
www/loop.php Normal file
View File

@ -0,0 +1,47 @@
<?php
// display full post/image or thumbs
if(!isset($called_from_shortcode)) {
$image = $meta = 'true';
$full = 'true';
$nopaging = 'false';
$img_style = 'full';
$width = 'full';
$news = 'false';
$split = 1;
}
$img_style = $img_style.'image';
global $wpv_loop_vars;
$old_wpv_loop_vars = $wpv_loop_vars;
$wpv_loop_vars = array(
'image' => $image,
'meta' => $meta,
'fullpost' => $full,
'img_style' => $img_style,
'width' => $width,
);
?>
<div class="loop-wrapper clearfix <?php echo $width?> <?php if($news=='true') echo 'news'?> force-full-width <?php if((int)$split>1) echo 'split'?>">
<?php
$i = 0;
if(have_posts()) while(have_posts()): the_post();
?>
<div class="page-content post-head clearfix <?php echo get_post_type()?> <?php if ( ($i+1)%$split == 0) echo 'last'; ?>">
<?php
wpv_post_template(array('video', 'audio', 'abogado'));
comments_template();
?>
</div>
<?php
$i++;
endwhile;
?>
<?php $wpv_loop_vars = $old_wpv_loop_vars; ?>
<?php if($nopaging != 'true' && function_exists('wpv_pagination')) wpv_pagination() ?>
</div>

80
www/page.php Normal file
View File

@ -0,0 +1,80 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = wpv_post_default('layout-type', 'default-body-layout');
if(empty($layout_type)) {
$layout_type = 'full';
}
switch($layout_type) {
case 'left-only':
define('WPV_LAYOUT', 'left-sidebar');
break;
case 'right-only':
define('WPV_LAYOUT', 'right-sidebar');
break;
case 'left-right':
define('WPV_LAYOUT', 'two-sidebars');
break;
case 'full':
define('WPV_LAYOUT', 'no-sidebars');
break;
}
get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php $slug = sanitize_title( get_the_title(), $fallback_title ); ?>
<?php if(!!wpv_post_default('show_page_header', 'has-page-header')): ?>
<header class="page-header <?php echo $slug; ?>">
<h1><?php the_title();?></h1>
<?php
$page_desc = get_post_meta(get_the_id(), 'description', true);
if(!empty($page_desc)):
?>
<div class="description"><?php echo $page_desc?></div>
<?php endif ?>
</header>
<?php endif ?>
<?php
global $wpv_has_header_sidebars;
if( $wpv_has_header_sidebars) {
get_sidebar('header');
}
?>
<div class="clearfix page-wrapper <?php echo $slug; ?>">
<?php if($layout_type == 'left-only' || $layout_type == 'left-right'): ?>
<aside class="left">
<?php get_sidebar('left'); ?>
</aside>
<?php endif ?>
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<?php $has_image = po_page_image() ?>
<div class="page-content <?php echo $has_image?>">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) ); ?>
<?php wpv_share('page'); ?>
</div><!-- .entry-content -->
<?php comments_template( '', true ); ?>
</article>
<?php if($layout_type == 'right-only' || $layout_type == 'left-right'): ?>
<aside class="right">
<?php get_sidebar('right'); ?>
</aside>
<?php endif ?>
</div>
<?php endwhile ?>
<?php get_footer(); ?>

BIN
www/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

36
www/search.php Normal file
View File

@ -0,0 +1,36 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php
printf( __( 'Search Results for: %s', 'wpv' ), '<span>' . get_search_query() . '</span>' );
?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<?php get_template_part('loop', 'category') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php else: ?>
<header class="page-header">
<h1><?php _e('Sorry, nothing found', 'wpv') ?></h1>
</header>
<?php endif ?>
<?php get_footer(); ?>

5
www/searchform.php Normal file
View File

@ -0,0 +1,5 @@
<form role="search" method="get" class="searchform clearfix" action="<?php echo home_url( '/' ); ?>">
<label for="search-text-widget" class="visuallyhidden"><?php _e('Search for:') ?></label>
<input id="search-text-widget" type="text" value="" name="s" placeholder="<?php _e('Search')?>" required="required" />
<input type="submit" value="<?php _e('Search', 'wpv')?>" />
</form>

35
www/sidebar-footer.php Normal file
View File

@ -0,0 +1,35 @@
<?php
/**
* The Footer widget areas.
*
* @package WordPress
* @subpackage Progressio
*/
?>
<?php
$is_active = false;
$sidebar_count = (int)wpv_get_option('footer-sidebars');
for($i=1; $i<=$sidebar_count; $i++)
$is_active = $is_active || is_active_sidebar("footer-sidebars-$i");
if($is_active):
?>
<div id="footer-sidebars">
<div class="content clearfix">
<?php for($i=1; $i<=$sidebar_count; $i++): ?>
<?php if ( is_active_sidebar("footer-sidebars-$i") ) : ?>
<?php $is_last = wpv_get_option("footer-sidebars-$i-last") ?>
<aside class="<?php wpvge("footer-sidebars-$i-width")?><?php if($is_last) echo ' last' ?>">
<?php dynamic_sidebar("footer-sidebars-$i"); ?>
</aside>
<?php if($is_last): ?>
<div class="clearboth push"></div>
<?php endif ?>
<?php endif; ?>
<?php endfor ?>
</div>
</div>
<?php endif; //$is_active ?>

36
www/sidebar-header.php Normal file
View File

@ -0,0 +1,36 @@
<?php
/**
* The header widget areas.
*
* @package WordPress
* @subpackage Progressio
*/
?>
<?php
$is_active = false;
$sidebar_count = (int)wpv_get_option('header-sidebars');
for($i=1; $i<=$sidebar_count; $i++) {
$is_active = $is_active || is_active_sidebar("header-sidebars-$i");
}
if($is_active):
?>
<div id="header-sidebars" class="centralblock">
<div class="clearfix">
<?php for($i=1; $i<=$sidebar_count; $i++): ?>
<?php if ( is_active_sidebar("header-sidebars-$i") ) : ?>
<?php $is_last = wpv_get_option("header-sidebars-$i-last") ?>
<aside class="<?php wpvge("header-sidebars-$i-width")?><?php if($is_last) echo ' last' ?>">
<?php dynamic_sidebar("header-sidebars-$i"); ?>
</aside>
<?php if($is_last): ?>
<div class="clearboth push"></div>
<?php endif ?>
<?php endif; ?>
<?php endfor ?>
</div>
</div>
<?php endif; //$is_active ?>

3
www/sidebar-left.php Normal file
View File

@ -0,0 +1,3 @@
<?php
global $sidebars;
$sidebars->get_sidebar('left');

3
www/sidebar-right.php Normal file
View File

@ -0,0 +1,3 @@
<?php
global $sidebars;
$sidebars->get_sidebar('right');

8
www/sidebar.php Normal file
View File

@ -0,0 +1,8 @@
<div id="primary" class="widget-area" role="complementary">
<aside class="sidebar">
<?php
global $sidebars, $post;
$sidebars->get_sidebar($post->ID);
?>
</aside>
</div>

80
www/single-abogado.php Normal file
View File

@ -0,0 +1,80 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = wpv_post_default('layout-type', 'default-body-layout');
if(empty($layout_type)) {
$layout_type = 'full';
}
switch($layout_type) {
case 'left-only':
define('WPV_LAYOUT', 'left-sidebar');
break;
case 'right-only':
define('WPV_LAYOUT', 'right-sidebar');
break;
case 'left-right':
define('WPV_LAYOUT', 'two-sidebars');
break;
case 'full':
define('WPV_LAYOUT', 'no-sidebars');
break;
}
get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php $slug = sanitize_title( get_the_title(), $fallback_title ); ?>
<?php if(!!wpv_post_default('show_page_header', false)): ?>
<header class="page-header <?php echo $slug; ?>">
<h1><?php the_title();?></h1>
<?php
$page_desc = get_post_meta(get_the_id(), 'description', true);
if(!empty($page_desc)):
?>
<div class="description"><?php echo $page_desc?></div>
<?php endif ?>
</header>
<?php endif ?>
<?php
global $wpv_has_header_sidebars;
if( $wpv_has_header_sidebars) {
get_sidebar('header');
}
?>
<div class="clearfix page-wrapper <?php echo $slug; ?>">
<?php if($layout_type == 'left-only' || $layout_type == 'left-right'): ?>
<aside class="left">
<?php get_sidebar('left'); ?>
</aside>
<?php endif ?>
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<?php $has_image = po_page_image() ?>
<div class="page-content <?php echo $has_image?>">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) ); ?>
<?php wpv_share('page'); ?>
</div><!-- .entry-content -->
<?php comments_template( '', true ); ?>
</article>
<?php if($layout_type == 'right-only' || $layout_type == 'left-right'): ?>
<aside class="right">
<?php get_sidebar('right'); ?>
</aside>
<?php endif ?>
</div>
<?php endwhile ?>
<?php get_footer(); ?>

101
www/single-audio.php Normal file
View File

@ -0,0 +1,101 @@
<?php extract(wpv_post_info()) ?>
<div class="side-post-info">
<a class="post-format-pad" href="<?php echo add_query_arg( 'format_filter', 'audio',home_url()) ?>"><span class="video"></span></a>
<?php if(wpv_get_option('meta_posted_on')): ?>
<span class="entry-date" title="<?php the_time(); ?>"><?php the_time('j F'); ?></span>
<?php endif ?>
<?php edit_post_link('Edit') ?>
</div>
<div class="post-article">
<?php po_post_header($meta) ?>
<article class="audio-post-format">
<div class="post-audio">
<?php
$source = get_post_meta($post->ID, 'post-link', true);
preg_match('/\.(\w+)$/i', $source, $matches);
$file_type = $matches[1];
?>
<div id="jquery_jplayer_<?php the_id()?>" class="jp-jplayer"></div>
<div class="jp-audio">
<div class="jp-type-single">
<div id="jp_interface_<?php the_id()?>" class="jp-interface">
<div class="jp-video-play"></div>
<ul class="jp-controls">
<li><a href="#" class="jp-play" tabindex="1"><?php _e('play', 'wpv')?></a></li>
<li><a href="#" class="jp-pause" tabindex="1"><?php _e('pause', 'wpv')?></a></li>
<li><a href="#" class="jp-stop" tabindex="1"><?php _e('stop', 'wpv')?></a></li>
<li><a href="#" class="jp-mute" tabindex="1"><?php _e('mute', 'wpv')?></a></li>
<li><a href="#" class="jp-unmute" tabindex="1"><?php _e('unmute', 'wpv')?></a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
<div class="jp-play-bar"></div>
</div>
</div>
<div class="jp-volume-bar">
<div class="jp-volume-bar-value"></div>
</div>
<div class="jp-current-time"></div>
<div class="jp-duration"></div>
</div>
<div id="jp_playlist_<?php the_id()?>" class="jp-playlist">
<ul>
<li><?php the_title()?></li>
</ul>
</div>
</div>
</div>
<?php if(!empty($file_type)): ?>
<script type="text/javascript">
jQuery(function($){
$("#jquery_jplayer_<?php the_id()?>").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
<?php echo $file_type?>: "<?php echo $source?>"
});
},
swfPath: "<?php echo WPV_SWF ?>",
supplied: "<?php echo $file_type?>",
cssSelectorAncestor: '#jp_interface_<?php the_id()?>'
,errorAlerts: true
,warningAlerts: true <?php // should we have error and warning alerts? ?>
});
});
</script>
<?php endif ?>
</div>
<div class="post-content">
<?php
if(is_single()) {
the_content();
wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) );
wpv_share('post');
} else {
if($fullpost) {
global $more;
$more = 0;
the_content(__("Read More", 'wpv'),false);
} else {
the_excerpt();
}
}
?>
</div>
<footer class="entry-utility">
<?php if($meta && wpv_get_option('meta_posted_in')): ?>
<span><?php _e('Categories:', 'wpv')?></span> <span><?php echo get_the_category_list(', '); ?></span>
<?php the_tags('<span>Tags: </span><span>',', ','</span>')?>
<?php endif ?>
<?php if(wpv_get_option('meta_comment_count')): ?>
<span class="comments-link fr"><?php comments_popup_link('<b>Leave a comment</b> <span class="icomment-box">?</span>', '<b>Comment</b> <span class="icomment-box">1</span>', '<b>Comments</b> <span class="icomment-box">%</span>'); ?></span>
<?php endif ?>
</footer>
</article>
</div>

124
www/single-portfolio.php Normal file
View File

@ -0,0 +1,124 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = wpv_post_default('layout-type', 'default-body-layout');
if(empty($layout_type)) {
$layout_type = 'full';
}
switch($layout_type) {
case 'left-only':
define('WPV_LAYOUT', 'left-sidebar');
break;
case 'right-only':
define('WPV_LAYOUT', 'right-sidebar');
break;
case 'two-sidebars':
define('WPV_LAYOUT', 'two-sidebars');
break;
case 'full':
define('WPV_LAYOUT', 'no-sidebars');
break;
}
get_header(); ?>
<?php if(get_post_meta(get_the_id(), 'show_page_header', true) != 'false'): ?>
<header class="page-header">
<h1><?php the_title();?></h1>
<?php
$page_desc = get_post_meta(get_the_id(), 'description', true);
if(!empty($page_desc)):
?>
<div class="description"><?php echo $page_desc?></div>
<?php endif ?>
</header>
<?php endif ?>
<?php
global $wpv_has_header_sidebars;
if( $wpv_has_header_sidebars) {
get_sidebar('header');
}
?>
<div class="clearfix page-wrapper">
<?php if($layout_type == 'left-only' || $layout_type == 'left-right'): ?>
<aside class="left">
<?php get_sidebar('left'); ?>
</aside>
<?php endif ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php $rel_group = 'portfolio_'.get_the_ID() ?>
<?php extract(wpv_get_portfolio_options('true', $rel_group)) ?>
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<?php
$column_width = wpv_get_central_column_width();
$size = array(intval(0.7 * $column_width) -28, 0);
?>
<div class="portfolio_image_wrapper">
<?php if($type != 'video'): ?>
<a class="portfolio_image <?php echo $lightbox?> thumbnail <?php echo $type?>" <?php if(isset($link_target)) echo 'target="'.$link_target.'"'; ?> href="<?php echo $href?>" <?php echo $rel.$width.$height.$iframe?>>
<span class="graphic-label-big>"></span>
<?php
wpv_lazy_load( wpv_resize_image($image[0], $size[0], $size[1]), get_the_title(), array(
'width' => $size[0],
)); ?>
</a>
<?php else: ?>
<?php wpv_post_video($size[0], null, $href) ?>
<?php endif ?>
<div class="shadow"></div>
<?php if($type == 'gallery'):
$image_ids = get_post_meta(get_the_id(), 'gallery_ids', true);
$image_ids = explode(',', str_replace('image-', '', $image_ids));
// these two set the gallery thumbnails' size and count
$per_line = 5;
$between = 10;
$small_size = intval(($size[0] + 4 - $between*($per_line-1) )/ $per_line);
foreach($image_ids as $num=>$image_id):
$image = wp_get_attachment_image_src($image_id,'full');
$image = $image[0];
?><a class="portfolio-small lightbox thumbnail <?php if($num % $per_line ==0) echo " first-in-line"?>" href="<?php echo $image ?>" <?php echo $rel?>><?php
wpv_lazy_load(wpv_resize_image($image, $small_size, $small_size), get_the_title(), array(
'width' => $small_size,
'height' => $small_size,
));
?></a><?php
endforeach;
endif;
?>
</div>
<div class="portfolio_details project-info-pad folio single">
<div class="portfolio_desc">
<?php the_content()?>
</div>
</div>
<?php //wpv_post_siblings_links() ?>
<div class="clearboth">
<?php wpv_share('portfolio'); ?>
</div>
</article>
<?php endwhile ?>
<?php if($layout_type == 'right-only' || $layout_type == 'left-right'): ?>
<aside class="right">
<?php get_sidebar('right'); ?>
</aside>
<?php endif ?>
</div>
<?php get_footer(); ?>

96
www/single-standard.php Normal file
View File

@ -0,0 +1,96 @@
<?php extract(wpv_post_info()) ?>
<div class="side-post-info">
<?php
$format = get_post_format();
$format = empty($format)? 'standard' : $format;
?>
<a class="post-format-pad" href="<?php echo add_query_arg( 'format_filter',$format,home_url()) ?>"><span class="<?php echo $format?>"></span></a>
<?php if(wpv_get_option('meta_posted_on')): ?>
<span class="entry-date" title="<?php the_time(); ?>"><?php the_time('j F'); ?></span>
<?php endif ?>
<?php edit_post_link('Edit') ?>
</div>
<?php
if(has_post_format('image')) {
$show_image = true;
$img_style = 'fullimage';
}
ob_start();
if($show_image) {
$has_image = po_post_image($img_style);
} else {
$has_image = 'no-image';
}
$post_image = ob_get_clean();
?>
<div class="post-article <?php echo $has_image?>-wrapper">
<?php if(!has_post_format('aside') && !has_post_format('quote') && $img_style == 'fullimage') po_post_header($meta) ?>
<div class="<?php echo $format?>-post-format clearfix">
<?php
if($show_image) {
$has_image = po_post_image($img_style, $width);
} else {
$has_image = 'no-image';
}
?>
<div class="post-content-outer <?php echo $has_image ?>">
<?php if(!has_post_format('aside') && !has_post_format('quote') && $img_style != 'fullimage') po_post_header($meta) ?>
<div class="post-content the-content">
<?php if(has_post_format('quote')): ?>
<blockquote>
<?php the_content() ?>
</blockquote>
<cite>
<?php
$post_link = get_post_meta(get_the_id(), 'post-link', true);
$quote_author = get_post_meta(get_the_id(), 'quote-author', true);
?>
<a href="<?php echo $post_link?>" title="<?php echo $quote_author?>"><?php echo $quote_author?></a>
</cite>
<?php if(is_single()): ?>
<?php
wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) );
?>
<?php endif ?>
<?php else: ?>
<?php
if(is_single()) {
the_content();
wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) );
} else {
if($fullpost) {
global $more;
$more = 0;
the_content(__("Read More", 'wpv'),false);
} else {
the_excerpt();
}
}
?>
<?php endif ?>
</div>
<?php if(is_single()) wpv_share('post'); ?>
<footer class="entry-utility">
<?php if($meta && wpv_get_option('meta_posted_in')): ?>
<span><?php _e('Categories:', 'wpv')?></span> <span><?php echo get_the_category_list(', '); ?></span>
<?php the_tags('<span>Tags: </span><span>',', ','</span>')?>
<?php endif ?>
<?php if(wpv_get_option('meta_comment_count')): ?>
<span class="comments-link fr"><?php comments_popup_link('<b>Leave a comment</b> <span class="icomment-box">?</span>', '<b>Comment</b> <span class="icomment-box">1</span>', '<b>Comments</b> <span class="icomment-box">%</span>'); ?></span>
<?php endif ?>
</footer>
</div>
</div>
</div>

45
www/single-video.php Normal file
View File

@ -0,0 +1,45 @@
<?php extract(wpv_post_info()) ?>
<div class="side-post-info">
<a class="post-format-pad" href="<?php echo add_query_arg( 'format_filter','video',home_url()) ?>"><span class="video"></span></a>
<?php if(wpv_get_option('meta_posted_on')): ?>
<span class="entry-date" title="<?php the_time(); ?>"><?php the_time('j F'); ?></span>
<?php endif ?>
<?php edit_post_link('Edit') ?>
</div>
<div class="post-article">
<?php po_post_header($meta) ?>
<article class="video-post-format">
<?php $width = ($width == 'full') ? wpv_str_to_width($width)-106-10 : wpv_str_to_width($width);?>
<div class="post-video"><?php wpv_post_video($width) ?></div>
<div class="post-content">
<?php
if(is_single()) {
the_content();
wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wpv' ), 'after' => '</div>' ) );
wpv_share('post');
} else {
if($fullpost) {
global $more;
$more = 0;
the_content(__("Read More", 'wpv'),false);
} else {
the_excerpt();
}
}
?>
</div>
<footer class="entry-utility">
<?php if($meta && wpv_get_option('meta_posted_in')): ?>
<span><?php _e('Categories:', 'wpv')?></span> <span><?php echo get_the_category_list(', '); ?></span>
<?php the_tags('<span>Tags: </span><span>',', ','</span>')?>
<?php endif ?>
<?php if(wpv_get_option('meta_comment_count')): ?>
<span class="comments-link fr"><?php comments_popup_link('<b>Leave a comment</b> <span class="icomment-box">?</span>', '<b>Comment</b> <span class="icomment-box">1</span>', '<b>Comments</b> <span class="icomment-box">%</span>'); ?></span>
<?php endif ?>
</footer>
</article>
</div>

73
www/single.php Normal file
View File

@ -0,0 +1,73 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = wpv_post_default('layout-type', 'default-body-layout');
switch($layout_type) {
case 'left-only':
define('WPV_LAYOUT', 'left-sidebar');
break;
case 'right-only':
define('WPV_LAYOUT', 'right-sidebar');
break;
case 'two-sidebars':
define('WPV_LAYOUT', 'two-sidebars');
break;
case 'full':
define('WPV_LAYOUT', 'no-sidebars');
break;
}
get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<header class="page-header">
<h1><?php the_title() ?></h1>
<?php
$page_desc = get_post_meta(get_the_id(), 'description', true);
if(!empty($page_desc)):
?>
<div class="description"><?php echo $page_desc?></div>
<?php endif ?>
</header>
<?php
global $wpv_has_header_sidebars;
if( $wpv_has_header_sidebars) {
get_sidebar('header');
}
?>
<div class="clearfix page-wrapper">
<?php if($layout_type == 'left-only' || $layout_type == 'left-right'): ?>
<aside class="left">
<?php get_sidebar('left'); ?>
</aside>
<?php endif ?>
<div class="single-post-wrapper <?php echo $layout_type?>">
<div class="loop-wrapper clearfix full">
<div class="page-content post-head clearfix">
<?php wpv_post_template(array('audio', 'video')); ?>
<div class="clearboth">
<?php comments_template(); ?>
</div>
</div>
</div>
</div>
<?php if($layout_type == 'right-only' || $layout_type == 'left-right'): ?>
<aside class="right">
<?php get_sidebar('right'); ?>
</aside>
<?php endif ?>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>

226
www/slider.php Normal file
View File

@ -0,0 +1,226 @@
<?php
global $post;
$slider_effect = wpv_post_default('slider-effect', 'header-slider-effect');
$slider_style = get_slider_design($slider_effect);
$width = (int)wpv_get_option('content-width');
if($slider_style == 'side-caption') {
$width -= 300;
}
if($slider_style == 'peek') {
$width -= 180;
}
?>
<div id="header-slider-caption-wrapper"></div>
<div id="header-slider" class="invisible">
<?php
$query = array(
'post_type' => 'slideshow',
'posts_per_page' => -1,
'order' => 'ASC',
'orderby' => 'menu_order',
);
global $post;
$cats = get_post_meta(get_the_id(), 'slider_categories', true);
if(!empty($cats)) {
$query['tax_query'] = array(
array(
'taxonomy' => 'slideshow_category',
'field' => 'slug',
'terms' => unserialize($cats),
'operator' => 'IN',
)
);
$query['taxonomy'] = 'slideshow_category';
}
query_posts($query);
while(have_posts()): the_post();
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
$image = $image[0];
$background = get_post_meta(get_the_id(), 'background', true);
$href = get_post_meta(get_the_id(), 'slide-link', true);
$link_target = get_post_meta(get_the_id(), 'slide-link-target', true);
if(!empty($href)) {
$href = "data-href='$href' data-target='$link_target'";
} else {
$href = '';
}
$style = '';
if(!empty($background)) {
$style .= "background:$background; ";
}
$style = "data-style='$style'";
if(get_post_meta(get_the_id(), 'slide-content-is', true) == 'caption'):
$content = get_the_content();
$caption_id = '';
if(!empty($content)) {
$caption_id = '#caption-'.get_the_id();
$captions[] = array(
'id' => 'caption-'.get_the_id(),
'content' => apply_filters('the_content', $content),
'helper1' => apply_filters('the_content', get_post_meta(get_the_id(), 'caption-helper-1', true)),
'helper2' => apply_filters('the_content', get_post_meta(get_the_id(), 'caption-helper-2', true)),
);
}
?>
<img src="<?php echo $image?>" data-thumb="<?php echo $image?>" alt="<?php echo $caption_id?>" class="wpv-slide" <?php echo "$style $href"?>/>
<?php else: ?>
<div class="wpv-slide" <?php echo "$style $href"?> data-thumb="<?php echo $image?>">
<div style="width:<?php echo $width ?>px"><?php echo apply_filters('the_content', get_the_content()) ?></div>
</div>
<?php endif ?>
<?php
endwhile;
wp_reset_query();
if(wpv_get_option('enable-featured-posts')):
$query = array(
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'featured',
'value' => 'true',
)
),
);
// query not ready
global $post;
query_posts($query);
while(have_posts()): the_post(); ?>
<?php
$caption_id = '#caption-'.get_the_id();
$captions[] = array(
'id' => 'caption-'.get_the_id(),
'content' => '',
'helper1' => '<div class="slide-post-pad">'.get_the_excerpt().'</div>',
'helper2' => '<a href="'.get_permalink().'" title="'.get_the_title().'">'.get_the_title().'</a>',
);
?>
<?php if(has_post_format('video')): ?>
<div class="wpv-slide" data-caption="<?php echo $caption_id?>">
<?php wpv_post_video(wpv_get_slider_width(), wpv_get_option('header-slider-height')); ?>
</div>
<?php else:
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
$image = $image[0];
?>
<img src="<?php echo $image?>" data-thumb="<?php echo $image?>" alt="<?php echo $caption_id?>" data-href="<?php the_permalink() ?>" class="wpv-slide"/>
<?php endif ?>
<?php
endwhile;
wp_reset_query();
$query = array(
'post_type' => 'portfolio',
'orderby'=>'menu_order',
'order'=>'ASC',
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'featured',
'value' => 'true',
)
),
);
query_posts($query);
$size = array(0.7*940-8, wpv_get_option('header-slider-height'));
$moretext = __('Read more', 'wpv');
while(have_posts()): the_post();
?>
<?php
$caption_id = '#caption-'.get_the_id();
$captions[] = array(
'id' => 'caption-'.get_the_id(),
'content' => '',
'helper1' => '<div class="slide-post-pad">'.get_the_excerpt().'</div>',
'helper2' => '<a href="'.get_permalink().'" title="'.get_the_title().'">'.get_the_title().'</a>',
);
$image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
$image = $image[0];
?>
<img src="<?php echo $image?>" data-thumb="<?php echo $image?>" alt="<?php echo $caption_id?>" data-href="<?php the_permalink() ?>" class="wpv-slide" />
<?php
endwhile;
wp_reset_query();
endif;
?>
</div>
<div class="hidden">
<?php if(is_array($captions)): ?>
<?php foreach($captions as $caption): ?>
<div id="<?php echo $caption['id']?>" class="wpv-caption-origin">
<?php
if($slider_style == 'navigation-preview') {
$caption = array(
'content' => $caption['helper2'],
'helper1' => $caption['content'],
'helper2' => $caption['helper1']
);
}
?>
<div class="main-caption sub-caption"><?php echo $caption['content']?></div>
<?php if(!empty($caption['helper1'])): ?>
<div class="helper-caption-1 sub-caption"><?php echo $caption['helper1']?></div>
<?php endif ?>
<?php if(!empty($caption['helper2'])): ?>
<div class="helper-caption-2 sub-caption"><?php echo $caption['helper2']?></div>
<?php endif ?>
</div>
<?php endforeach ?>
<?php endif ?>
</div>
<script>
jQuery(function($) {
$('#header-slider').wpvSlider({
captionContainer : "#header-slider-caption-wrapper",
height: <?php wpvge('header-slider-height')?>,
width: <?php echo $width ?>,
pause_time: <?php wpvge('header-slider-pausetime')?>,
animation_time: <?php wpvge('header-slider-animationtime')?>,
effect: '<?php echo $slider_effect?>',
auto_direction: '<?php wpvge('header-slider-direction')?>',
caption_opacity: <?php wpvge('header-slider-captionopacity')?>,
expand: <?php echo intval( wpv_post_default('slider-fullwidth', 'has-fullwidth-slider') == 'true' )?>,
prev_text: '<?php wpvge('header-slider-prevtext')?>',
next_text: '<?php wpvge('header-slider-nexttext')?>',
autoHeight: <?php echo intval(wpv_get_option('header-slider-autoheight'))?>,
pause_on_hover: <?php echo intval(wpv_get_option('header-slider-pauseonhover'))?>,
resizing: '<?php echo wpv_get_option('header-slider-resizing')?>',
show_arrows: false,
effect_settings: {
easing: '<?php wpvge('header-slider-easing')?>',
waveDuration: <?php wpvge('header-slider-animationtime')?>,
subslideDuration: <?php wpvge('header-slider-subslideduration')?>,
waveType: '<?php wpvge('header-slider-wavetype')?>',
visibleGrid: <?php echo intval(wpv_get_option('header-slider-visiblegrid'))?>,
rows: <?php echo intval(wpv_get_option('header-slider-rows'))?>,
cols: <?php echo intval(wpv_get_option('header-slider-cols'))?>,
caption_animation_time: <?php echo intval(wpv_get_option('header-slider-captiontime'))?>,
caption_queue: true
}
});
});
</script>

9
www/style.css Normal file
View File

@ -0,0 +1,9 @@
/*
Theme Name: Progressio
Theme URI: http://vamtam.com/progressio
Description: WordPress Theme with powerful back-end framework.
Author: Vamtam
Author URI: http://vamtam.com
Version: 1.3
*/

29
www/tag.php Normal file
View File

@ -0,0 +1,29 @@
<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php printf( __( 'Tag Archives: %s', 'wpv' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<?php get_template_part('loop', 'tag') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer() ?>

View File

@ -0,0 +1,185 @@
<?php
// galleries
function gallery_get_image_action_callback() {
$html = gallery_create_image_item($_POST['id']);
if ($html) {
exit;
} else {
echo '0';
exit;
}
}
add_action('wp_ajax_theme-gallery-get-image', 'gallery_get_image_action_callback');
function gallery_create_image_item($id) {
$image = & get_post($id);
if ($image):
$meta = wp_get_attachment_metadata($id);
$date = mysql2date(get_option('date_format'), $image->post_date);
$size = $meta['width'] . ' x ' . $meta['height'] . 'px';
return include(WPV_ADMIN_HELPERS . 'gallery-item.php');
endif;
return false;
}
/*
* media upload
*/
function media_get_image_action_callback() {
$image = & get_post($_POST['id']);
if($image)
echo $image->guid;
else
echo '0';
exit;
}
add_action('wp_ajax_wpv-media-get-image', 'media_get_image_action_callback');
/// handles ajax request when saving a theme's options
function save_theme_config_callback() {
foreach($_POST['config'] as &$opt) {
$opt = stripslashes($opt);
}
unset($opt);
$output = json_encode($_POST['config']);
$_POST['file'] = trim($_POST['file']);
if(file_put_contents(WPV_SAVED_OPTIONS.$_POST['file'], $output)) {
echo '<span class="success">'. __('Success.', 'wpv') . '</span>';
} else {
echo '<span class="error">'. __('Cannot save file.', 'wpv') . '</span>';
}
exit;
}
add_action('wp_ajax_save_theme_config', 'save_theme_config_callback');
// deletes a skin
function delete_theme_config_callback() {
$_POST['file'] = trim($_POST['file']);
if(@unlink(WPV_SAVED_OPTIONS.$_POST['file'])) {
echo '<span class="success">'. __('Success.', 'wpv') . '</span>';
} else {
echo '<span class="error">'. __('Cannot delete file.', 'wpv') . '</span>';
}
exit;
}
add_action('wp_ajax_delete_theme_config', 'delete_theme_config_callback');
// lists available theme configs
function wpv_available_configs_callback() {
$skins_dir = opendir(WPV_SAVED_OPTIONS);
if(isset($_POST['prefix'])) {
$prefix = $_POST['prefix'].'_';
echo '<option value="">'.__('Available skins', 'wpv').'</option>';
while($file = readdir($skins_dir)):
if($file != "." && $file != ".." && strpos($file, $prefix) == 0):
?>
<option value="<?php echo WPV_SAVED_OPTIONS_URI.$file?>"><?php echo str_replace($prefix, '', $file) ?></option>
<?php
endif;
endwhile;
closedir($skins_dir);
}
exit;
}
add_action('wp_ajax_wpv-available-configs', 'wpv_available_configs_callback');
function save_theme_last_config_callback() {
wpv_update_option('last-active-skin', $_POST['name']);
echo '<span class="success">The changes are temporary, you have to click "Save options".</span>';
exit;
}
add_action('wp_ajax_save_last_theme_config', 'save_theme_last_config_callback');
// gets the stylesheet for the font preview
function wpv_font_preview_callback() {
global $available_fonts;
$url = wpv_get_font_url($_POST['face']);
if(!empty($url)) {
echo $url;
}
exit;
}
add_action('wp_ajax_wpv-font-preview', 'wpv_font_preview_callback');
// lists available templates
function wpv_available_templates_callback() {
$templates_dir = opendir(WPV_TEMPLATES_DIR);
echo '<option value="">'.__('Available templates', 'wpv').'</option>';
while($file = readdir($templates_dir)):
if($file != "." && $file != ".." && strpos($file, THEME_SLUG) == 0):
?>
<option value="<?php echo WPV_TEMPLATES_URI.$file?>"><?php echo str_replace(THEME_SLUG, '', $file) ?></option>
<?php
endif;
endwhile;
closedir($templates_dir);
exit;
}
add_action('wp_ajax_wpv-available-templates', 'wpv_available_templates_callback');
// saves a template
function wpv_save_template_callback() {
foreach($_POST['template'] as &$opt) {
if(is_string($opt)) {
$opt = stripslashes($opt);
}
}
unset($opt);
$output = json_encode($_POST['template']);
$_POST['file'] = trim($_POST['file']);
if(file_put_contents(WPV_TEMPLATES_DIR.THEME_SLUG.$_POST['file'], $output)) {
echo '<span class="success">'. __('Success.', 'wpv') . '</span>';
} else {
echo '<span class="error">'. __('Cannot save file.', 'wpv') . '</span>';
}
exit;
}
add_action('wp_ajax_wpv-save-template', 'wpv_save_template_callback');
// deletes a template
function wpv_delete_template_callback() {
$file = WPV_TEMPLATES_DIR.THEME_SLUG.$_POST['file'];
if(@unlink($file)) {
echo '<span class="success">'. __('Deleted.', 'wpv') . '</span>';
} else {
echo '<span class="error">'. __('Cannot delete file.', 'wpv') . '</span>';
}
exit;
}
add_action('wp_ajax_wpv-delete-template', 'wpv_delete_template_callback');
// saves the theme/framework options
function wpv_save_options_callback() {
$page = include WPV_ADMIN_OPTIONS . str_replace('wpv_', '', $_POST['page']) . '.php';
wpv_save_config($page['config']);
_e('Saved', 'wpv');
exit;
}
add_action('wp_ajax_wpv-save-options', 'wpv_save_options_callback');

View File

@ -0,0 +1,14 @@
<?php
require_once( '../../../../../../wp-load.php' );
$config = array(
'title' => __('Shortcodes', 'wpv'),
'id' => 'shortcode',
);
require_once WPV_ADMIN_HELPERS . 'shortcodes_generator.php';
$shortcodes = include(WPV_SHORTCODES_GENERATOR . $_GET['slug'] .'.php');
$generator = new shortcodes_generator($config, $shortcodes);
$generator->render();

View File

@ -0,0 +1,35 @@
<!doctype html>
<?php
global $is_shortcode_preview;
$is_shortcode_preview = true;
require_once( '../../../../../../wp-load.php' );
?>
<html>
<head>
<?php
wp_deregister_script('admin-bar');
wp_deregister_style('admin-bar');
remove_action('wp_footer', 'wp_admin_bar_render', 1000);
?>
<?php wp_head() ?>
<?php $shortcode = stripslashes($_POST['data']); // why do we need stripslashes to make it work? we don't post it with slashes...?>
<style>
html, body {
background: transparent;
}
body {
<?php // nasty fix, can we do better? ?>
<?php if(strpos($shortcode, '[tooltip') !== false):?>
padding: 100px 10px 10px 150px;
<?php else: ?>
padding: 10px;
<?php endif ?>
}
</style>
</head>
<body>
<?php echo apply_filters('the_content', do_shortcode($shortcode)) ?>
<?php wp_footer() ?>
</body>
</html>

View File

@ -0,0 +1,45 @@
.body-layout img.selected,
.body-layout img:hover,
.wpv-autofill.selected img,
.wpv-autofill:hover img {
border-color: #288BB9;
border-width: 2px;
margin: -1px;
}
#wpv-templates-name {
width: 182px;
}
#wpv-available-templates {
width: 124px;
}
#wpv-ajax-content {
background-color: #666;
line-height: 1.5;
}
#wpv-config-tabs {
position: relative;
z-index: 50;
}
#wpv-config-tabs {
z-index: 40;
}
#adminmenuwrap {
z-index: 120;
}
#adminmenu {
zoom: 1;
}
#adminmenu li {
z-index: 60;
}
.ui-range-slider {
position: relative;
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Some files were not shown because too many files have changed in this diff Show More