Edgewall Software

Changes between Version 47 and Version 48 of GenshiTutorial


Ignore:
Timestamp:
Aug 31, 2007, 12:48:22 AM (17 years ago)
Author:
cmlenz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v47 v48  
    301301    </div>
    302302
    303     <p><a href="/submit/">Submit new link</a></p>
     303    <p><a class="action" href="/submit/">Submit new link</a></p>
    304304
    305305    <ol py:if="links">
     
    720720  </head>
    721721  <body>
    722     <p><a href="/submit/">Submit new link</a></p>
     722    <p><a class="action" href="/submit/">Submit new link</a></p>
    723723
    724724    <ol py:if="links">
     
    763763  <body>
    764764    <h1>News</h1>
    765     <p><a href="${url('/submit/')}">Submit new link</a></p>
     765    <p><a class="action" href="${url('/submit/')}">Submit new link</a></p>
    766766
    767767    <ol py:if="links" class="links">
     
    813813    <a href="${link.url}">${link.url}</a><br />
    814814    posted by ${link.username} at ${link.time.strftime('%x %X')}<br />
    815     <a href="${url('/comment/%s/' % link.id)}">comment</a>
     815
     816    <p><a class="action" href="${url('/comment/%s/' % link.id)}">comment</a></p>
     817
    816818    <ul py:if="link.comments" class="comments">
    817819      <li py:for="idx, comment in enumerate(link.comments)" id="comment$idx">
    818         <strong>${comment.username}</strong>
    819         at ${comment.time.strftime('%x %X')}
     820        <strong>${comment.username}</strong> at ${comment.time.strftime('%x %X')}
    820821        <blockquote>${comment.content}</blockquote>
    821822      </li>