Skip to content

Commit

Permalink
Change post named anchors to id versions for html5 correctness.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavincarr committed Jan 10, 2012
1 parent 75c5f09 commit eb30ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/index.html.ep
Expand Up @@ -21,7 +21,7 @@
% while (my $post = $rs->next) {
% my $tp = $post->ts2tp;
<div id="post<%= $post->id %>" class="post<%= $post->forward_flag ? '' : ' paused' %>">
<a name="<%= $post->id %>"></a>
<a id="<%= $post->id %>"></a>
<p class="post_text"><%== $post->post_html %></p>
% if ($user) {
<p class="post_controls">
Expand Down

0 comments on commit eb30ecb

Please sign in to comment.