forked from molovo/bushwick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.php
76 lines (60 loc) · 2.35 KB
/
article.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php theme_include('header'); ?>
<section class="grid 1of1 content" id="article-<?php echo article_id(); ?>">
<h1><?php echo article_title(); ?></h1>
<?php if (article_description()): ?>
<aside class="tldr">
<p>
<?php echo article_description(); ?>
</p>
</aside>
<?php endif ?>
<article>
<?php echo article_markdown(); ?>
</article>
<section class="footnote">
<!-- Unfortunately, CSS means everything's got to be inline. -->
<p><small>This article is my <?php echo numeral(article_id()); ?> 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 endif; ?> <?php echo article_custom_field('attribution'); ?></small></p>
</section>
</section>
<?php if(comments_open()): ?>
<section class=" grid 1of1 content comments">
<h3>Comments</h3>
<?php if(has_comments()): ?>
<ul class="commentlist">
<?php $i = 0; while(comments()): $i++; ?>
<li class="comment" id="comment-<?php echo comment_id(); ?>">
<div class="wrap">
<h6 class="remove-bottom"><?php echo comment_name(); ?></h6>
<small class="ralign" style="float: right;"><time><?php echo relative_time(comment_time()); ?></time><br /><?php echo $i; ?></small>
<div class="content">
<?php echo comment_text(); ?>
</div>
<small class="counter"></small>
</div>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
<div class="grid 1of1"></div>
<h3>Leave a Comment</h3>
<form id="comment" class="commentform wrap" method="post" action="<?php echo comment_form_url(); ?>#comment">
<?php echo comment_form_notifications(); ?>
<p class="name">
<label for="name">Your name:</label>
<?php echo comment_form_input_name('placeholder="Your name"'); ?>
</p>
<p class="email">
<label for="email">Your email address:</label>
<?php echo comment_form_input_email('placeholder="Your email (won’t be published)"'); ?>
</p>
<p class="textarea">
<label for="text">Your comment:</label>
<?php echo comment_form_input_text('placeholder="Your comment"'); ?>
</p>
<p class="submit">
<?php echo comment_form_button(); ?>
</p>
</form>
</section>
<?php endif; ?>
<?php theme_include('footer'); ?>