ich baue grad ein neues template und bin ganz angetan von den neuen HTML elementen, daher muss jetzt alles schön semantisch werden. jetzt frage ich mich wie ich bei artikel-übersichten (archive) am besten die artikel darstelle? also mit < footer >:
ZitatAlles anzeigen
<section><article>
<footer>
<time datetime="<?php the_date('Y-m-d');?>"><?php the_time('j.m.y');?></time> |
<?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare', 'comments-link', ''); ?>
</footer>
<header>
<h1 class="page-header"><?php the_title(); ?></h1>
</header>
<div class="entry-standard">
<?php the_content(); ?>
</div>
</article><article>
...
</article>
</section>
ODER ohne:
ZitatAlles anzeigen
<section><article>
<header>
<h1 class="page-header"><?php the_title(); ?></h1>
<time datetime="<?php the_date('Y-m-d');?>"><?php the_time('j.m.y');?></time> |
<?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare', 'comments-link', ''); ?>
</header>
<div class="entry-standard">
<?php the_content(); ?>
</div>
</article><article>
...
</article>
</section>
was sagt ihr?