summaryrefslogtreecommitdiff
path: root/plt/index.html
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-06-04 22:18:12 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-06-04 22:18:12 -0600
commit135c6380ad381762c89276bed4b8736e235529ff (patch)
tree3c138b8a541fcf228c034a2e93ba8ce49d218dd9 /plt/index.html
parent11b9e8505b8a92555cce6615f19268a620e9ce53 (diff)
move plt dir to be included in data
Diffstat (limited to 'plt/index.html')
-rw-r--r--plt/index.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/plt/index.html b/plt/index.html
deleted file mode 100644
index c96db3b..0000000
--- a/plt/index.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <base href="{{site_base_static_url}}">
- <title>Index -- {{site_title}}</title>
- </head>
- <body>
- <h1>Index -- {{site_title}}</h1>
- <p>Some text here.</p>
-
- <p>Tags:
- {%for t in all_tags%}
- <a href="{{t[1]}}">{{t[0]}}</a>{{", " if not loop.last else ""}}
- {%endfor%}
- </p>
-
- <h2>Articles</h2>
- <ul>
- {%for p in all_pages%}
- {%if loop.previtem%}
- {%if loop.previtem.cdate_list_sep !=p.cdate_list_sep%}
- <h3>{{p.cdate_list_sep}}</h3>
- {%endif%}
- {%else%}
- <h3>{{p.cdate_list_sep}}</h3>
- {%endif%}
- <li>{{p.cdate_list}} - <a href="{{p.url}}">{{p.title}}</a></li>
- {%endfor%}
- </ul>
- </body>
-</html>