-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-projets.php
58 lines (44 loc) · 2.64 KB
/
single-projets.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
get_header();
?>
<section class="projet">
<h2 class="hidden">Projets</h2>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<article role="article">
<div class="text">
<h3 role="heading" aria-level="3"><?php the_title(); ?> <span><time date="<?php the_time('Y-m-d') ?>" pubdate><?php echo(get_the_date()) ?></time></span></h3>
<span><?php the_terms( $post->ID, 'Competence', 'Technologies : ', ' / ' ); ?></span>
<h4 role="heading" aria-level="4"><?php the_field('titre_section_une'); ?></h4>
<figure><a class="thumbnail" href="<?php the_field('image_section_une'); ?>"><img src="<?php the_field('image_section_une'); ?>" alt=""></a></figure>
<div><?php the_field('texte_section_une'); ?></div>
<h4 role="heading" aria-level="4"><?php the_field('titre_section_deux'); ?></h4>
<figure><a class="thumbnail" href="<?php the_field('image_section_deux'); ?>"><img src="<?php the_field('image_section_deux'); ?>" alt=""></a></figure>
<div>
<?php the_field('texte_section_deux'); ?>
<?php $bloginfo = get_bloginfo('template_url'); // adresse du blog
$titre=get_the_title(); // titre de l'article
$pmlink=get_permalink(); // adresse de l'article ?>
<h4 role="heading" aria-level="4">
Partager le projet
</h4>
<a class="social partage-facebook facebook" href="http://www.facebook.com/share.php?u=<?php echo $pmlink; ?>" target="blank" rel="nofollow" ><i class="icon-facebook-circled-1"></i></a>
<a class="social partage-twitter twitter" href="http://twitter.com/home?status=<?php echo $pmlink; ?>" target="blank" rel="nofollow" ><i class="icon-twitter-circled-1"></i></a>
<a class="social partage-google google" href="https://plus.google.com/share?url=<?php echo $pmlink; ?>" target="blank" rel="nofollow" ><i class="icon-gplus-circled-1"></i></a>
<a class="social partage-mail mail" href="mailto:?subject=Article sur <?php bloginfo('name'); ?>&body=Un projet interessant sur <?php bloginfo('name'); ?> : <?php echo $titre;?>... Adresse : <?php echo $pmlink; ?>" rel="nofollow" ><i class="icon-mail-circled"></i></a>
</div>
</div>
</article>
<?php endwhile; ?>
<?php endif; ?>
</section>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.js"></script>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.heplbox.js"></script>
<script>
jQuery( function() {
jQuery( '.projet a.thumbnail' ).heplbox();
} );
</script>
<?php
get_footer();
?>