Finish front page
This commit is contained in:
parent
dcf4094546
commit
922e753d59
|
@ -447,7 +447,7 @@ h4 {
|
||||||
/* Footer */
|
/* Footer */
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
margin: 2em 0 0 0;
|
margin: -0.3em 0 0;
|
||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
|
@ -531,3 +531,8 @@ footer .content li { list-style: none; }
|
||||||
margin: 0 0 2em 0;
|
margin: 0 0 2em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Plugins */
|
||||||
|
.gmp_map_opts {
|
||||||
|
float: none !important;
|
||||||
|
margin-top: 1em;
|
||||||
|
}.
|
||||||
|
|
|
@ -1,14 +1,5 @@
|
||||||
<?php get_header(); ?>
|
<?php get_header(); ?>
|
||||||
<section class="content grid">
|
<section class="content grid">
|
||||||
<?php
|
|
||||||
/*
|
|
||||||
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
|
||||||
get_template_part( 'entry' );
|
|
||||||
comments_template();
|
|
||||||
endwhile; endif;
|
|
||||||
get_template_part( 'nav', 'below' );
|
|
||||||
*/
|
|
||||||
?>
|
|
||||||
<div class="col2">
|
<div class="col2">
|
||||||
<h1><?php echo get_bloginfo('name'); ?> </h1>
|
<h1><?php echo get_bloginfo('name'); ?> </h1>
|
||||||
<p><?php echo get_bloginfo('description'); ?></p>
|
<p><?php echo get_bloginfo('description'); ?></p>
|
||||||
|
@ -22,31 +13,12 @@
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
|
|
||||||
<section class="content">
|
<section class="content">
|
||||||
<h3>Новини | <small><a href="">виж всички новини</a></small></h3>
|
<?php echo do_shortcode( '[sh-latest-posts cat="news" label="Новини"]' ); ?>
|
||||||
<div class="grid">
|
|
||||||
<?php
|
|
||||||
$news_args = array( 'cat' => 5, posts_per_page => 3 );
|
|
||||||
$news = new WP_Query( $news_args );
|
|
||||||
|
|
||||||
if ( $news->have_posts() ) :
|
|
||||||
while ( $news->have_posts() ) : $news->the_post();
|
|
||||||
?>
|
|
||||||
<div class="col3">
|
|
||||||
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
|
|
||||||
<p class="info">От <?php the_author(); ?> | Публикувано на <?php the_date(); ?> </p>
|
|
||||||
<?php the_excerpt(); ?>
|
|
||||||
<a class="button" href="<?php the_permalink(); ?>">виж цялата новина</a>
|
|
||||||
</div>
|
|
||||||
<?php
|
|
||||||
endwhile;
|
|
||||||
endif;
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
|
|
||||||
<section class="content grid">
|
<section class="content">
|
||||||
<h3>Място: Интерпред, София, България</h3>
|
<h3>Място: Интерпред, София, България</h3>
|
||||||
<?php
|
<?php
|
||||||
$transport_args = array( 'post_type' => 'transportation' );
|
$transport_args = array( 'post_type' => 'transportation' );
|
||||||
|
@ -62,5 +34,8 @@
|
||||||
?>
|
?>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<?php echo do_shortcode( '[ready_google_map id="1" map_language="en" type="HYBRID" align="right"]' ); ?>
|
||||||
|
|
||||||
<?php get_sidebar(); ?>
|
<?php get_sidebar(); ?>
|
||||||
<?php get_footer(); ?>
|
<?php get_footer(); ?>
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
# Add support for thumbnais
|
||||||
|
add_theme_support( 'post-thumbnails' );
|
||||||
|
|
||||||
|
|
||||||
register_nav_menus(
|
register_nav_menus(
|
||||||
array( 'main-menu' => __( 'Main Menu', 'initfest' ),
|
array( 'main-menu' => __( 'Main Menu', 'initfest' ),
|
||||||
'footer-openfest' => __('OpenFest', 'initfest'),
|
'footer-openfest' => __('OpenFest', 'initfest'),
|
||||||
|
@ -16,65 +21,34 @@ function sh_latest_posts($atts){
|
||||||
'label' => __('News', 'initfest')
|
'label' => __('News', 'initfest')
|
||||||
), $atts );
|
), $atts );
|
||||||
|
|
||||||
$result = '<div class="separator"></div><section class="content"><h3>'.$atts['label'].' | <small><a href="'.esc_url(get_term_link($atts['cat'], 'category')).'">'.__('see all', 'initfest').'</a></small></h3>';
|
$result = '<section class="content"><h3>'.$atts['label'].' | <small><a href="'.esc_url(get_term_link($atts['cat'], 'category')).'">'.__('see all', 'initfest').'</a></small></h3><div class="grid">';
|
||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
|
|
||||||
?>
|
$news_args = array( 'catecory_name' => $cat, 'numberposts' => 3 );
|
||||||
|
$news = new WP_Query( $news_args );
|
||||||
<div class="grid">
|
|
||||||
<div class="col3">
|
if ( $news->have_posts() ) :
|
||||||
<h4>Разходи за OpenFest 2013</h4>
|
while ( $news->have_posts() ) : $news->the_post();
|
||||||
<p class="info">От HACKMAN | Публикувано на: 13.11.2013</p>
|
?>
|
||||||
<p>4913.05 – Зали, озвучаване и техника за презентиране<br />
|
<div class="col3">
|
||||||
2265.07 – Тениски за посетители, екип и доброволци<br />
|
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
|
||||||
673.18 – Разходи за вода, чай, кафе, вафли, разколнители, канцеларски материали<br />
|
<p class="info">От <?php the_author(); ?> | Публикувано на <?php the_date(); ?> </p>
|
||||||
2442.00 – Транспорт, хотел и вечеря за лекторите<br />
|
<?php the_excerpt(); ?>
|
||||||
397.00 – Закуска и обяд за екипа в двата дни ...</p>
|
<a class="button" href="<?php the_permalink(); ?>">виж цялата новина</a>
|
||||||
<a href="#" class="button">виж цялата новина</a>
|
</div>
|
||||||
</div>
|
<?php
|
||||||
<div class="col3">
|
endwhile;
|
||||||
<h4>2013 Network Stats</h4>
|
endif;
|
||||||
<p class="info">От HACKMAN | Публикувано на: 13.11.2013</p>
|
|
||||||
<p>Удостоверили и сме им раздали 1841 уникални потребителски IP версия 4
|
|
||||||
адреси и 1356 IPv6 адреси!<br />Максимума едновременно работещи потребители върху всичките 4 AP-та е 326
|
|
||||||
устройства и е направен на 2.11.2013 в 15:33
|
|
||||||
– Зала Варна 2.4GHz 11ng = 44
|
|
||||||
– Лоби 2.4GHz 11ng = 85 ...</p>
|
|
||||||
<a href="#" class="button">виж цялата новина</a>
|
|
||||||
</div>
|
|
||||||
<div class="col3">
|
|
||||||
<h4>Статистика за Бирата</h4>
|
|
||||||
<p class="info">От HACKMAN | Публикувано на: 13.11.2013</p>
|
|
||||||
<p>418х Старопрамен наливно 0.500мл<br />
|
|
||||||
97х Каменица 0.500мл<br />
|
|
||||||
62х Бекс<br />
|
|
||||||
48х Старопрамен бутилка 0.500мл<br />
|
|
||||||
34х Стела Артоа<br />
|
|
||||||
29х Каменица тъмно<br />
|
|
||||||
29х Ла Трап<br />
|
|
||||||
23х Корона<br />
|
|
||||||
23х Гинес<br />
|
|
||||||
23х ХопГоблин<br />
|
|
||||||
13х Трупър ...</p>
|
|
||||||
<a href="#" class="button">виж цялата новина</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div class="separator"></div>
|
|
||||||
<?php
|
|
||||||
$result .= ob_get_contents();
|
$result .= ob_get_contents();
|
||||||
|
$result .='</div></section>';
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add support for thumbnais
|
|
||||||
add_theme_support( 'post-thumbnails' );
|
|
||||||
|
|
||||||
|
|
||||||
# Create a custom post type for Sponsors
|
# Create a custom post type for Sponsors
|
||||||
function create_sponsors_posttype() {
|
function create_sponsors_posttype() {
|
||||||
|
|
||||||
|
@ -182,8 +156,6 @@ add_action( 'init', 'transportation_posttype' );
|
||||||
|
|
||||||
# Create shortcode for sponsors
|
# Create shortcode for sponsors
|
||||||
function sponsors_shortcode() {
|
function sponsors_shortcode() {
|
||||||
global $post;
|
|
||||||
|
|
||||||
$output = '';
|
$output = '';
|
||||||
|
|
||||||
$sponsors_args = array( 'post_type' => 'sponsors', 'orderby' => 'rand' );
|
$sponsors_args = array( 'post_type' => 'sponsors', 'orderby' => 'rand' );
|
||||||
|
|
Loading…
Reference in New Issue