summaryrefslogtreecommitdiff
path: root/project/templates/tags/application.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'project/templates/tags/application.xhtml')
-rw-r--r--project/templates/tags/application.xhtml32
1 files changed, 32 insertions, 0 deletions
diff --git a/project/templates/tags/application.xhtml b/project/templates/tags/application.xhtml
new file mode 100644
index 0000000..e8555c7
--- /dev/null
+++ b/project/templates/tags/application.xhtml
@@ -0,0 +1,32 @@
+
+{%- extends "base.xhtml" -%}
+
+
+
+{%- block title -%}Application Tag{%- endblock -%}
+
+
+
+{%- block style %}
+ <link href="/css/index.css" rel="stylesheet" />
+{% endblock -%}
+
+
+
+{%- block content %}
+<h4>Tag: Application</h4>
+
+<ul class="index">
+ {%- for item in articles -%}
+ {%- if 'application' in item.taglist -%}
+ {%- if item.updated -%}{%- set postclass = "update" -%}{%- else -%}{%- set postclass = "post" -%}{%- endif -%}
+ {%- if item.updated -%}{%- set postverb = "Updated" -%}{%- else -%}{%- set postverb = "Posted" -%}{%- endif %}
+ <li><a href="{{ item.anchor }}">{{ item.title }}</a><br />
+ <span class="taglist">{{ item.taglist | join(", ") }}</span><br />
+ <span class="{{ postclass }}">({{ postverb }} {{ item.postdate }})</span></li>
+ {%- endif -%}
+ {%- endfor %}
+</ul>
+{% endblock -%}
+
+