晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
| DIR:/proc/self/root/home/salvufkx/public_html/wp-contentmmm/themes/vega/ |
| Current File : //proc/self/root/home/salvufkx/public_html/wp-contentmmm/themes/vega/index.php |
<?php
/**
* The main template file for index (latest posts)
*
* @package WordPress
*/
get_header();
?>
<div id="page_caption">
<div id="page_caption_wrapper">
<div class="page_tagline">
<?php echo get_bloginfo('description'); ?>
</div>
<h1><?php echo get_bloginfo('name'); ?></h1>
</div>
</div>
<!-- Begin content -->
<div id="page_content_wrapper" class="two">
<div class="inner">
<!-- Begin main content -->
<div class="inner_wrapper">
<div class="sidebar_content full_width">
<?php
if (have_posts()) : while (have_posts()) : the_post();
$image_thumb = '';
if(has_post_thumbnail(get_the_ID(), 'blog'))
{
$image_id = get_post_thumbnail_id(get_the_ID());
$image_thumb = wp_get_attachment_image_src($image_id, 'blog', true);
}
?>
<!-- Begin each blog post -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post_wrapper fullwidth">
<div class="post_header fullwidth">
<?php
//Get post featured content
$post_ft_type = get_post_meta(get_the_ID(), 'post_ft_type', true);
switch($post_ft_type)
{
case 'Image':
default:
if(!empty($image_thumb))
{
$small_image_url = wp_get_attachment_image_src($image_id, 'blog', true);
?>
<div class="post_img">
<a href="<?php echo esc_url(get_permalink()); ?>">
<img src="<?php echo esc_url($small_image_url[0]); ?>" alt="" class=""/>
</a>
</div>
<br class="clear"/>
<?php
}
break;
case 'Vimeo Video':
$post_ft_vimeo = get_post_meta(get_the_ID(), 'post_ft_vimeo', true);
?>
<?php echo do_shortcode('[tg_vimeo video_id="'.$post_ft_vimeo.'" width="880" height="495"]'); ?>
<br class="clear"/>
<?php
break;
case 'Youtube Video':
$post_ft_youtube = get_post_meta(get_the_ID(), 'post_ft_youtube', true);
?>
<?php echo do_shortcode('[tg_youtube video_id="'.$post_ft_youtube.'" width="880" height="495"]'); ?>
<br class="clear"/>
<?php
break;
case 'Gallery':
$post_ft_gallery = get_post_meta(get_the_ID(), 'post_ft_gallery', true);
?>
<?php echo do_shortcode('[tg_gallery_slider gallery_id="'.$post_ft_gallery.'" width="880" height="495"]'); ?>
<br class="clear"/>
<?php
break;
} //End switch
?>
<?php
//Get Post's Categories
$post_categories = wp_get_post_categories($post->ID);
if(!empty($post_categories))
{
?>
<div class="post_subtitle">
<?php
foreach($post_categories as $c)
{
$cat = get_category( $c );
?>
<a href="<?php echo esc_url(get_category_link($cat->term_id)); ?>"><?php echo $cat->name; ?></a>
<?php
}
?>
</div>
<?php
}
?>
<h4><a href="<?php echo esc_url(get_permalink()); ?>" title="<?php echo esc_attr(get_the_title()); ?>"><?php the_title(); ?></a></h4>
<div class="post_detail">
<?php echo get_the_time(THEMEDATEFORMAT); ?>
<?php
$author_ID = get_the_author_meta('ID');
$author_name = get_the_author();
$author_url = get_author_posts_url($author_ID);
if(!empty($author_name))
{
?>
<?php echo _e( 'by', THEMEDOMAIN ); ?> <a href="<?php echo esc_url($author_url); ?>"><?php echo $author_name; ?></a>
<?php
}
?>
</div>
</div>
<br class="clear"/>
<?php
$pp_blog_display_full = get_option('pp_blog_display_full');
if(!empty($pp_blog_display_full))
{
the_content();
}
else
{
?>
<div class="post_excerpt">
<p><?php echo get_the_excerpt(); ?></p>
</div>
<div class="post_readmore">
<div class="post_readmore_line"></div>
<a class="readmore button" href="<?php echo esc_url(get_permalink()); ?>"><?php echo _e( 'Read More', THEMEDOMAIN ); ?></a>
</div>
<?php
}
?>
<br class="clear"/>
</div>
</div>
<!-- End each blog post -->
<?php endwhile; endif; ?>
<?php
if (function_exists("wpapi_pagination"))
{
wpapi_pagination($wp_query->max_num_pages);
}
else
{
?>
<div class="pagination"><p><?php posts_nav_link(' '); ?></p></div>
<?php
}
?>
</div>
<!-- End main content -->
</div>
</div>
<?php get_footer(); ?> |