-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-proyecto.php
More file actions
27 lines (21 loc) · 837 Bytes
/
Copy pathsingle-proyecto.php
File metadata and controls
27 lines (21 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php get_header(); ?>
<?php while(have_posts()){the_post(); ?>
<section class="grid overlap_card section_padding">
<img class="lazy overlap_card_img rowcol1" data-url="<?php echo get_the_post_thumbnail_url(); ?>" alt="Ilustración Generación o2">
<div class="overlap_card_caption rowcol1">
<hgroup class="">
<h1 class="overlap_card_title"><?php the_title(); ?></h1>
<h5 class="overlap_card_author"><i>Por <?php the_author(); ?></i></h5>
</hgroup>
<div class="vertical_line"></div>
<div class="overlap_card_social_container grid">
<p class="overlap_card_social_title">Comparte</p>
<?php include 'inc/socialsharing.php'; ?>
</div>
</div>
</section>
<main class="single_content section_padding">
<?php the_content() ?>
</main>
<?php } wp_reset_query(); ?>
<?php get_footer(); ?>