Skip to content

Latest commit

 

History

History
82 lines (69 loc) · 1.53 KB

File metadata and controls

82 lines (69 loc) · 1.53 KB
title Blog
sidebar false
<script setup> import { data as posts } from '/data/posts.data' import { formatDate, getSorted } from '/.vitepress/theme/utils'; const sortedPosts = getSorted( posts ); </script>
  • {{ post.frontmatter.title }}
    {{ formatDate( post.frontmatter.date ) }}

There's nothing here yet!

Check back later for updates.
<style scoped> ul { list-style-type: none; padding-left: 0; width: 100%; display: flex; flex-wrap: wrap; gap: 10px; } li { flex-grow: 1; } a { text-decoration: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; border: 1px solid var( --vp-c-text-3 ); border-radius: 5px; min-height: 200px; color: white; background-size: cover; background-position: center; background-repeat: no-repeat; transition: all 0.3s; } a:hover { color: white; } a strong { font-size: 20px; } a span { font-size: var(--vp-code-font-size); color: lightgray; font-weight: 300; } </style>