123456789101112131415161718192021222324252627282930313233343536 |
- {namespace coleslaw.theme.azrazalea-net}
- {template post}
- <div class="row-fluid">{\n}
- <h2 class="page-header">{$post.title}</h2>{\n}
- <p>
- {if $post.tags}
- Tagged as {foreach $tag in $post.tags}
- <a href="{$tag.url}">{$tag.name}</a>{nil}
- {if not isLast($tag)},{sp}{/if}
- {/foreach}
- {/if}
- </p>
- {if $post.author or $post.date}
- <p>
- Written
- {if $post.author}
- by <em>{$post.author}</em>
- {/if}
- {if $post.date}
- on <em>{$post.date}</em>
- {/if}
- </p>
- {/if}
- {$post.text |noAutoescape}
- <div class="row">
- {if $prev}<a class="pull-left" href="/{$prev.url}">← Previous</a>{/if}{\n}
- {if $next}<a class="pull-right" href="/{$next.url}">Next →</a>{/if}{\n}
- </div>
- </div>{\n}
- {/template}
|