Skip to content

Commit

Permalink
Change file names for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
kubgus committed Sep 8, 2024
1 parent 5dc589b commit d9178d1
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/blog-preview.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const dateString = new Date(post.frontmatter.date).toLocaleString("en-US", { mon
---

<figure>
<a href={post.url} target="_blank">
<a href={post.url}>
<h1>{post.frontmatter.title}</h1>
<div class="info faded">
<p>{dateString}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/tech-marquee.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import PictureFrame from "./picture-frame.astro";
import frameData from "../data/frame-data.js";
import frameData from "../data/marquee-data.js";
const sortedData = frameData.sort(() => Math.random() - 0.5);
---
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import NavbarLayout from "./navbar.astro";
import NavbarLayout from "./navbar-layout.astro";
import "../styles/default-padding.css";
import "../styles/article.css";
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import CoreLayout from "../layouts/core.astro";
import CoreLayout from "../layouts/core-layout.astro";
import ContactBar from "../components/contact-bar.astro";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog/test.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
layout: "../../layouts/blog-navbar.astro"
layout: "../../layouts/blog-layout.astro"
title: "Preview of markdown styles"
description: "This post doesn't hold any relevance, it's just a preview to test markdown styles."
date: 2024-03-26
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import NavbarLayout from "../layouts/navbar.astro";
import NavbarLayout from "../layouts/navbar-layout.astro";
import ContactBar from "../components/contact-bar.astro";
Expand Down

0 comments on commit d9178d1

Please sign in to comment.