Example #1
0
">
			<h1><?php 
echo article_title();
?>
</h1>

			<article>
				<?php 
echo article_markdown();
?>
			</article>

			<section class="footnote">
				<!-- Unfortunately, CSS means everything's got to be inline. -->
				<p>This article is my <?php 
echo numeral(article_number(article_id()), true);
?>
 oldest. It is <?php 
echo count_words(article_markdown());
?>
 words long<?php 
if (comments_open()) {
    ?>
, and it’s got <?php 
    echo total_comments() . pluralise(total_comments(), ' comment');
    ?>
 for now.<?php 
}
?>
 <?php 
echo article_custom_field('attribution');
">
			<h1><?php 
echo article_title();
?>
</h1>

			<article>
				<?php 
echo article_markdown();
?>
			</article>

			<section class="footnote">
				<!-- Unfortunately, CSS means everything's got to be inline. -->
				<p>This article is my <?php 
echo numeral(total_articles());
?>
 oldest. It is <?php 
echo count_words(article_markdown());
?>
 words long<?php 
if (comments_open()) {
    ?>
, and it’s got <?php 
    echo total_comments() . pluralise(total_comments(), ' comment');
    ?>
 for now.<?php 
}
?>
 <?php 
echo article_custom_field('attribution');
Example #3
0
		<?php 
    echo comment_form_input_text();
    ?>
</label></p>
		
		<p><?php 
    echo comment_form_button();
    ?>
</p>
	</form>
</section>

<?php 
}
?>

<section class="footnote">
	<p>This article is my <?php 
echo numeral(article_id() + 1);
?>
 oldest. It is <?php 
echo count_words(article_html());
?>
 words long. 
	<?php 
echo article_custom_field('attribution');
?>
</p>
</section>

Example #4
0
">
			<h1><?php 
echo article_title();
?>
</h1>

			<article>
				<?php 
echo article_markdown();
?>
			</article>

			<section class="footnote">
				<!-- Unfortunately, CSS means everything's got to be inline. -->
				<p>This article is my <?php 
echo numeral(article_number(), true);
?>
 oldest. It is <?php 
echo count_words(article_markdown());
?>
 words long<?php 
if (comments_open()) {
    ?>
, and it’s got <?php 
    echo total_comments() . pluralise(total_comments(), ' comment');
    ?>
 for now<?php 
}
?>
. <?php 
echo article_custom_field('attribution');
Example #5
0
    <h1><?php 
echo article_title();
?>
</h1>
	
	<article>
	    <?php 
echo article_html();
?>
	</article>
</section>

<?php 
include 'includes/comment_form.php';
?>

<section class="footnote">
	<p>This article is my <?php 
echo numeral(article_id());
?>
 oldest. It is <?php 
echo count_words(article_html());
?>
 words long. 
	<?php 
echo article_custom_field('attribution');
?>
</p>
</section>