<!-- content6 --> 
<section class="section blog"> 
<div class="container"> 
  <div class="columns"> 
  <div class="columns is-6 is-multiline"> 
      <?php 
        $args = array( 
          'posts_per_page' => 2, 
        ); 
        $recent = new WP_Query($args); 
        while($recent->have_posts()) : $recent->the_post(); 
      ?> 
      <div class="column is-6 is-marge"> 
        <article> 
          <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> 
            <div class="card shadow"> 
              <div class="card-image"> 
                <?php if (has_post_thumbnail() ) {?> 
                <picture> 
                  <?php the_post_thumbnail(); ?> 
                </picture> 
                <?php } else { ?> 
                <?php 
                  $curdir=getcwd(); chdir(get_template_directory() . "/css/img/random/"); 
                  $files=glob("*.{gif,png,jpg,gif}", GLOB_BRACE); 
                  chdir($curdir); 
                  $file=$files[array_rand($files)]; 
                ?> 
                <picture> 
                  <img src="<?php echo(get_bloginfo('template_url')."/css/img/random/$file"); ?>" alt=" style="height:auto;" <?php bloginfo( 'name' ); ?>" /> 
                </picture> 
                <?php } ?> 
              </div> 
              <div class="card-content"> 
                <h1 class="subtitle is-4"> 
                  <?php the_title(); ?> 
                </h1> 
                <div class="content"> 
                  <p><?php the_excerpt();?></p> 
                </div> 
              </div> 
            </div> 
          </a> 
        </article> 
      </div><!-- /column --> 
      <?php endwhile; ?> 
    </div><!-- /columns --> 
    <div class="column is-6"> 
      <div class="block"> 
        <figure class="image is-32x32"><img style="height: auto;" src="<?php echo get_template_directory_uri(); ?>/css/img/icons/apple-touch-icon-57x57.png" alt=""></figure> 
      </div> 
      <h5 class="title is-spaced is-5">Actualités</h5> 
      <p class="subtitle">Our mission is not to outsell Hooli with a product like their latest Box 3. We are not 
        in it for the money - we are in it to make the whole world decentralized.</p> 
      <div class="buttons"><a class="button is-primary" href="<?php the_permalink(33); ?>">Join us</a><a class="button is-text" 
          href="<?php the_permalink(25); ?>">Watch more</a></div> 
    </div> 
  </div> 
</div> 
</section> 
<!-- content6 -->