Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 749 Bytes

notes.md

File metadata and controls

35 lines (31 loc) · 749 Bytes
title
Notes
<script setup> import { data as posts } from '/data/posts.data' import formatDate from '/.vitepress/theme/utils/formatDate'; import getSorted from '/.vitepress/theme/utils/getSorted'; const sortedPosts = getSorted( posts ); </script>
  • {{ post.frontmatter.title }}
    {{ formatDate( post.frontmatter.date ) }}
<style scoped> ul { list-style-type: none; padding-left: 0; font-size: 1.125rem; line-height: 1.75; } li { display: flex; justify-content: space-between; } li span { font-family: var(--vp-font-family-mono); font-size: var(--vp-code-font-size); } </style>