-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-about.php
43 lines (36 loc) · 876 Bytes
/
page-about.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
<?php
/*
Template Name: About
*/
?>
<?php
get_header();
?>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<section class="hi">
<div class="text">
<h2 role="heading" aria-level="2" title="about">
<?php the_title() ?>
</h2>
<div><?php the_content() ?></div>
</div>
</section>
<section>
<div class="presentation">
<h2 role="heading" aria-level="2">
<?php the_field('titre_presentation') ?>
</h2>
<div><img src="<?php the_field('image') ?>" alt=""></div>
<?php the_field('presentation') ?>
</div>
</section>
<?php endwhile; ?>
<?php endif; ?>
<section>
<h2 role="heading" aria-level="2">Compétences</h2>
<div><?php wp_tag_cloud( array( 'largest' => 1, 'smallest' => 1, 'unit' => 'em', 'taxonomy' => 'Competence', format => 'list' ) ); ?></div>
</section>
<?php
get_footer();
?>