Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 717 Bytes

index.md

File metadata and controls

34 lines (29 loc) · 717 Bytes
<script setup lang="ts"> import { data } from '/data/weekly.data' import formatDate from '/.vitepress/theme/utils/formatDate' import getSorted from '/.vitepress/theme/utils/getSorted' const sortedData = getSorted(data) </script>
  • {{ item.frontmatter.title }}
    {{ formatDate(item.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; align-items: center; } li span { font-family: var(--vp-font-family-mono); font-size: var(--vp-code-font-size); } </style>