diff options
Diffstat (limited to 'templates/archivepage.tmpl')
-rw-r--r-- | templates/archivepage.tmpl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/archivepage.tmpl b/templates/archivepage.tmpl new file mode 100644 index 0000000..738abcc --- /dev/null +++ b/templates/archivepage.tmpl @@ -0,0 +1,27 @@ +<hr/> +<div class="archivepage row"> + <div class="col-md-8 col-sm-8"> + <TMPL_IF PERMALINK> + <a href="<TMPL_VAR PERMALINK>"><TMPL_VAR TITLE></a> + <TMPL_ELSE> + <a href="<TMPL_VAR PAGEURL>"><TMPL_VAR TITLE></a> + </TMPL_IF> + <TMPL_LOOP TAGS> + <span class="label label-default"><TMPL_VAR LINK></span> + </TMPL_LOOP> + </div> + <div class="col-md-4 col-sm-4 text-muted"> + <span class="archivepagedate"> + <small><TMPL_VAR CTIME></small> + <TMPL_IF AUTHOR> + by <span class="author"> + <TMPL_IF AUTHORURL> + <a href="<TMPL_VAR AUTHORURL>"><TMPL_VAR AUTHOR></a> + <TMPL_ELSE> + <TMPL_VAR AUTHOR> + </TMPL_IF> + </span> + </TMPL_IF> + </span> + </div> +</div> |