forked from UCLAdeepvision/CS269-Projects-2025Spring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 872 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: default
---
<div class="home other-pages">
<ul class="post-list">
{% for post in site.posts %}
<li>
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
<span class="post-meta">
{{post.author}} {{"on"}} {{ post.date | date: date_format }}
<span>
{% for tag in post.tags %}
{% capture tag_name %}{{ tag }}{% endcapture %}
<a class="post-tag" href="/UCLAdeepvision.github.io/CS163-Projects-2024Fall/tag/{{ tag_name }}">
<nobr>{{ tag_name }}</nobr>
</a>
{% endfor %}
</span>
</span>
<h2>
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
</h2>
</li>
{% endfor %}
</ul>
</div>