10 lines
405 B
PHP
10 lines
405 B
PHP
|
|
<?php get_header(); ?>
|
||
|
|
<div class="content-area" style="max-width: 800px; margin: 40px auto; padding: 0 20px;">
|
||
|
|
<h1 style="margin-bottom: 20px; font-family: sans-serif;">Posts by <?php the_author(); ?></h1>
|
||
|
|
<?php
|
||
|
|
// Vi kalder blok-funktionen direkte for at få det rigtige tweet-layout
|
||
|
|
echo ansico_render_micropost_list(array('postsPerPage' => 20));
|
||
|
|
?>
|
||
|
|
</div>
|
||
|
|
<?php get_footer(); ?>
|