MINOR: CSS and templating. Added Cufon font replacement script to render h1 and h2 in DTL Argo Bold font.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@86878 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Brent Neave 2009-09-21 21:01:02 +00:00 committed by Sam Minnee
parent b70a187aeb
commit 85a524abcb

View File

@ -1,23 +1,26 @@
<div id="PageComments_holder" class="typography"> <div id="comments">
<!-- HEADING AND LOGIN -->
<% if CanPostComment %> <% if CanPostComment %>
<h4><% _t('POSTCOM','Post your comment') %></h4> <h4><% _t('POSTCOM','Post your comment') %></h4>
$PostCommentForm $PostCommentForm
<% else %> <% else %>
<p>You can't post comments until you have logged in<% if PostingRequiresPermission %>, and that you have an appropriate permission level<% end_if %>. Please <a href="Security/login?BackURL={$Page.URLSegment}/" title="Login to post a comment">login by clicking here</a>.</p> <p>You can't post comments until you have logged in<% if PostingRequiresPermission %>, and that you have an appropriate permission level<% end_if %>. Please <a href="Security/login?BackURL={$Page.URLSegment}/" title="Login to post a comment">login by clicking here</a>.</p>
<% end_if %> <% end_if %>
<!-- COMMENTS -->
<h4><% _t('COMMENTS','Comments') %></h4> <h4><% _t('COMMENTS','Comments') %></h4>
<div id="CommentHolder">
<% if Comments %> <% if Comments %>
<ul id="PageComments">
<% control Comments %> <% control Comments %>
<li class="$EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass"> <div class="comment $EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass">
<% include PageCommentInterface_singlecomment %> <% include PageCommentInterface_singlecomment %>
</li> </div>
<% end_control %> <% end_control %>
</ul>
<% if Comments.MoreThanOnePage %> <% if Comments.MoreThanOnePage %>
<div id="PageCommentsPagination"> <div id="PageCommentsPagination">
@ -45,7 +48,8 @@
<% else %> <% else %>
<p id="NoComments"><% _t('NOCOMMENTSYET','No one has commented on this page yet.') %></p> <p id="NoComments"><% _t('NOCOMMENTSYET','No one has commented on this page yet.') %></p>
<% end_if %> <% end_if %>
</div>
<p id="CommentsRSSFeed"> <p id="CommentsRSSFeed">
<a class="commentrss" href="$CommentRssLink"><% _t('RSSFEEDCOMMENTS', 'RSS feed for comments on this page') %></a> | <a class="commentrss" href="$CommentRssLink"><% _t('RSSFEEDCOMMENTS', 'RSS feed for comments on this page') %></a> |
<a href="PageComment/rss" class="commentrss" title="<% _t('RSSVIEWALLCOMMENTS', 'View all Comments') %>"><% _t('RSSFEEDALLCOMMENTS', 'RSS feed for all comments') %></a> <a href="PageComment/rss" class="commentrss" title="<% _t('RSSVIEWALLCOMMENTS', 'View all Comments') %>"><% _t('RSSFEEDALLCOMMENTS', 'RSS feed for all comments') %></a>