Skip to content

Commit

Permalink
corrected capitalization typo in base folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielWElliott committed Jun 25, 2024
1 parent f2e6295 commit e344995
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
site: 'https://danielwelliott.github.io',
base: 'astrotutorial',
base: 'astroTutorial',
});
6 changes: 3 additions & 3 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const goal = 3;
<title>{pageTitle}</title>
</head>
<body>
<a href="/astrotutorial/">Home</a>
<a href="/astrotutorial/about/">About</a>
<a href="/astrotutorial/blog/">Blog</a>
<a href="/astroTutorial/">Home</a>
<a href="/astroTutorial/about/">About</a>
<a href="/astroTutorial/blog/">Blog</a>
<h1>{pageTitle}</h1>
<h2>... and my new Astro site!</h2>

Expand Down
12 changes: 6 additions & 6 deletions src/pages/blog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ const pageTitle = "My Astro Learning Blog";
<title>{pageTitle}</title>
</head>
<body>
<a href="/astrotutorial/">Home</a>
<a href="/astrotutorial/about/">About</a>
<a href="/astrotutorial/blog/">Blog</a>
<a href="/astroTutorial/">Home</a>
<a href="/astroTutorial/about/">About</a>
<a href="/astroTutorial/blog/">Blog</a>
<h1>{pageTitle}</h1>

<p>This is where I will post about my journey learning Astro.</p>
<ul>
<li><a href="/astrotutorial/posts/post-1/">Post 1</a></li>
<li><a href="/astrotutorial/posts/post-2/">Post 2</a></li>
<li><a href="/astrotutorial/posts/post-3/">Post 3</a></li>
<li><a href="/astroTutorial/posts/post-1/">Post 1</a></li>
<li><a href="/astroTutorial/posts/post-2/">Post 2</a></li>
<li><a href="/astroTutorial/posts/post-3/">Post 3</a></li>
</ul>
</body>
</html>
6 changes: 3 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const pageTitle = "Home Page";
<title>{pageTitle}</title>
</head>
<body>
<a href="/astrotutorial/">Home</a>
<a href="/astrotutorial/about/">About</a>
<a href="/astrotutorial/blog/">Blog</a>
<a href="/astroTutorial/">Home</a>
<a href="/astroTutorial/about/">About</a>
<a href="/astroTutorial/blog/">Blog</a>
<h1>{pageTitle}</h1>
</body>
</html>

0 comments on commit e344995

Please sign in to comment.