Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
/*
Template Name: User Profile
*/
get_header();
?>
<?php include('inc/sidebar-check.php')?>
<div class="row">
<div class="user-profile">
<div class="span3 append1">
<?php
uup_display_user();
?>
</div>
<div class="span<?php echo (is_active_sidebar( $sidebar )?5:8); ?>">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
<?php include('inc/sidebar-if-active.php')?>
</div>
<?php get_footer(); ?>