diff options
Diffstat (limited to 'project/templates/index.html')
-rw-r--r-- | project/templates/index.html | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/project/templates/index.html b/project/templates/index.html deleted file mode 100644 index c0a1ed7..0000000 --- a/project/templates/index.html +++ /dev/null @@ -1,28 +0,0 @@ - -{%- extends "base.html" -%} - - - -{%- block title -%}Jedidiah Barber's Personal Site{%- endblock -%} - - - -{%- block style %} - <link href="/css/index.css" rel="stylesheet" /> -{% endblock -%} - - - -{%- block content %} -<ul class="index"> - {%- for item in articles -%} - {%- 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> - {%- endfor %} -</ul> -{% endblock -%} - - |