log.template 303 B

123456789101112131415161718
  1. <div class="log">
  2. $if(title)$
  3. <h2 class="log-title">$title$</h2>
  4. $if(subtitle)$
  5. <p class="log-subtitle">$subtitle$</p>
  6. $endif$
  7. $if(date)$
  8. <span class="log-date">$date$</span> –
  9. $endif$
  10. $for(author)$
  11. <span class="log-author">$author$</span>
  12. $endfor$
  13. $endif$
  14. <div class="log-body">
  15. $body$
  16. </div>
  17. </div>