This commit is contained in:
Adam Matthiesen 2024-01-23 17:42:27 -08:00
parent cce5de2050
commit 864ea343f1
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{
"name": "@matthiesenxyz/astro-ghostcms-theme-default",
"description": "Default Theme for astro-ghostcms",
"version": "0.0.3",
"version": "0.0.4",
"homepage": "https://astro-ghostcms.xyz/",
"type": "module",
"license": "MIT",

View File

@ -1,7 +1,7 @@
---
import type { InferGetStaticParamsType, InferGetStaticPropsType } from 'astro';
import DefaultPageLayout from "../layouts/default.astro";
import PostPreviewList from "../components/PostPreviewList.astro";
import DefaultPageLayout from "../../layouts/default.astro";
import PostPreviewList from "../../components/PostPreviewList.astro";
import { getAllPosts, getAllAuthors, getSettings } from "@matthiesenxyz/astro-ghostcms/api";
import { twitter, facebook } from "@matthiesenxyz/astro-ghostcms/api";
import invariant from "tiny-invariant";

View File

@ -1,7 +1,7 @@
---
import type { InferGetStaticParamsType, InferGetStaticPropsType } from 'astro';
import DefaultPageLayout from "../layouts/default.astro";
import PostPreview from "../components/PostPreview.astro";
import DefaultPageLayout from "../../layouts/default.astro";
import PostPreview from "../../components/PostPreview.astro";
import { getAllPosts, getAllTags, getSettings } from "@matthiesenxyz/astro-ghostcms/api";
import { getGhostImgPath } from "../../utils";
import invariant from "tiny-invariant";