We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b17de0 commit 020fb39Copy full SHA for 020fb39
docs/index.md
@@ -23,12 +23,11 @@ import { data as posts } from './blog/blog.data.ts'
23
<template>
24
<h1>Updates & Development Progress</h1>
25
<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>
+ <p v-for="post of posts">
+ <a :href="post.url">{{ post.title }}</a>
+ <span style="font-size: 16px;"> by {{ post.author }} on {{ post.date.string }}</span>
+ <br>
+ <span style="font-size: 22px;">{{ post.excerpt }}</span>
+ <hr>
+ </p>
34
</template>
0 commit comments