bonjour à tous

je n'arrive pas à comprendre pourquoi ma boucle affiche 3 fois les mêmes articles
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<?php 
/*
Template Name: HOME2 	
*/
?>
<?php get_header(); ?>
 
		<div id="services" class="clearfix">
 
		<?php for ($i=1; $i<4 ; $i++) { ?>
				<?php query_posts( 'tag=accueil&showposts=3' ); while (have_posts()) : the_post(); ?>
 
					<div class="service<?php if ( $i==3 ) echo ' last'; ?>">
 
						<h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
 
						<div class="service-description-bottom">
							<div class="service-description">
								<div class="description">
									<p><?php echo apply_filters('the_content',et_create_dropcaps(get_the_content(''))); ?></p>
								</div> 	<!-- end .description-->
								<a href="<?php the_permalink(); ?>" class="readmore"><span><?php esc_html_e('read more'); ?></span></a>
							</div> 	<!-- end .service-description -->
						</div> 	<!-- end .service-description-bottom -->
					</div> 	<!-- end .service -->
				<?php endwhile; ?>
			<?php } ?>
 
		</div> <!-- end #services -->
	<?php } else { ?>
		<div id="content-top"></div>
		<div id="content" class="clearfix">
			<div id="content-area">
 
			</div> <!-- end #content-area -->
 
			<?php get_sidebar(); ?>
		</div> <!--end #content-->
		<div id="content-bottom"></div>
	<?php } ?>
 
<?php get_footer(); ?>
Quelqu'un peut-il m'expliquer le problème ?
Merci