Advertisement
Guest User

Wp 1

a guest
Mar 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.89 KB | None | 0 0
  1. <?php define( 'WP_USE_THEMES', false ); get_header(); ?>
  2.         <section class="site-content">
  3.             <div class="projects-feed cf">
  4.               <!--Starting the loop -->
  5.             <form><!--Starting the imgcheckboxform -->
  6.               <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  7.                 <article class="project cf">
  8.                     <!--<a href="portfolio-item.html" title="Mirabilandia">-->
  9.                         <div class="thumb">
  10.                           <?php if(has_post_thumbnail()) {?>
  11.                             <input class="input" type="checkbox" id="cb1">
  12.                             <label class="label" for="cb1">
  13.                             <div data-picture data-alt="">
  14.                                 <div data-src="<?php the_post_thumbnail_url(); ?>"></div>
  15.                                 <!--[if (lt IE 9) & (!IEMobile)]>
  16.                                <div data-src="img/portfolio-1.jpg"></div>
  17.                                <![endif]-->
  18.                                 <noscript>
  19.                                     <img src="<?php the_post_thumbnail_url();  }?>" alt="" />
  20.                                 </noscript>
  21.                             </div>
  22.                           </label>
  23.                         </div>
  24.                         <div class="project-content-container">
  25.                             <div class="project-content">
  26.                                 <div class="table">
  27.                                     <div class="table-cell">
  28.                                         <h2 class="thumbnail-title">
  29.                                           <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  30.                                         </h2>
  31.                                         <!--<p class="thumbnail-description"></p>-->
  32.                                           <?php the_excerpt(); ?>
  33.                                     </div>
  34.                                 </div>
  35.                             </div>
  36.                         </div>
  37.                         <!--<div class="overlay"></div>-->
  38.                     <!--</a> line 7-->
  39.                 </article>
  40.               <?php endwhile; ?>
  41.             <?php else : ?>
  42.                 <p><?php __('No Posts Found'); ?></p>
  43.               <?php endif; ?>
  44.             </form>
  45.             <!--END .projects-feed-->
  46.             </div>
  47.             <!--Img checkbox form -->
  48. <div id="requestform">
  49.   <h1 id="h1form">Pronto a richiedere il tuo itinerario?</h1>
  50.   <p id="pform">Seleziona i parchi a cui sei interessato</p>
  51.   <form>
  52.   <ul class="ul">
  53.     <li class="li"><input class="input" type="checkbox" id="cb1">
  54.       <label class="label" for="cb1"><img class="img" src="<?php bloginfo('template_url'); ?>/img/1.jpg" /></label>
  55.     </li>
  56.     <li class="li"><input class="input" type="checkbox" id="cb2">
  57.       <label class="label" for="cb2"><img class="img" src="<?php bloginfo('template_url'); ?>/img/2.jpg" /></label>
  58.     </li>
  59.     <li class="li"><input class="input" type="checkbox" id="cb3">
  60.       <label class="label" for="cb3"><img class="img" src="<?php bloginfo('template_url'); ?>/img/3.jpg" /></label>
  61.     </li>
  62.     <li class="li"><input class="input" type="checkbox" id="cb4">
  63.       <label class="label" for="cb4"><img class="img" src="<?php bloginfo('template_url'); ?>/img/4.jpg" /></label>
  64.     </li>
  65.     <li class="li"><input class="input" type="checkbox" id="cb5">
  66.       <label class="label" for="cb5"><img class="img" src="<?php bloginfo('template_url'); ?>/img/5.jpg" /></label>
  67.     </li>
  68.     <li class="li"><input class="input" type="checkbox" id="cb6">
  69.       <label class="label" for="cb6"><img class="img" src="<?php bloginfo('template_url'); ?>/img/6.jpg" /></label>
  70.     </li>
  71.   </ul>
  72. <input type="submit" placeholder="invia">
  73. </form>
  74. </div>
  75.         <!--END .site-content-->
  76.         </section>
  77.         <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement