Skip to content

Commit 020fb39

Browse files
Update index.md
1 parent 4b17de0 commit 020fb39

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docs/index.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ import { data as posts } from './blog/blog.data.ts'
2323
<template>
2424
<h1>Updates & Development Progress</h1>
2525
<hr>
26-
<ul>
27-
<li v-for="post of posts">
28-
<a :href="post.url">{{ post.title }}</a>
29-
<span style="font-size: 16px;"> by {{ post.author }} on {{ post.date.string }}</span>
30-
<br>
31-
<span style="font-size: 22px;">{{ post.excerpt }}</span>
32-
</li>
33-
</ul>
26+
<p v-for="post of posts">
27+
<a :href="post.url">{{ post.title }}</a>
28+
<span style="font-size: 16px;"> by {{ post.author }} on {{ post.date.string }}</span>
29+
<br>
30+
<span style="font-size: 22px;">{{ post.excerpt }}</span>
31+
<hr>
32+
</p>
3433
</template>

0 commit comments

Comments
 (0)