-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
132 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Deploy to GitHub Pages | ||
|
||
on: | ||
# Trigger the workflow every time you push to the `main` branch | ||
# Using a different branch name? Replace `main` with your branch’s name | ||
push: | ||
branches: [main] | ||
# Allows you to run this workflow manually from the Actions tab on GitHub. | ||
workflow_dispatch: | ||
|
||
# Allow this job to clone the repo and create a page deployment | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout your repository using git | ||
uses: actions/checkout@v4 | ||
- name: Install, build, and upload your site | ||
uses: withastro/action@v3 | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
--- | ||
<p>Footer</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
import Navigation from './Navigation.astro'; | ||
--- | ||
<h1>Teresa Fisher PhD. Milkweed Mental Health</h1> | ||
<Navigation /> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
--- | ||
<ul> | ||
<li><a href="/">Welcome</a></li> | ||
<li><a href="/about">About</a></li> | ||
<li><a href="/services">Services</a></li> | ||
<li><a href="/contact">Contact</a></li> | ||
</ul> | ||
|
||
<style> | ||
ul { | ||
display: flex; | ||
justify-self: center; | ||
list-style-type: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
li:not(:first-child) { | ||
margin-left: 1rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import Layout from '../layouts/Layout.astro'; | ||
import Heading from '../components/Heading.astro'; | ||
import Footer from '../components/Footer.astro'; | ||
--- | ||
<Layout> | ||
<Heading /> | ||
<main> | ||
<h2>About</h2> | ||
<p>Content here</p> | ||
</main> | ||
<Footer /> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import Layout from '../layouts/Layout.astro'; | ||
import Heading from '../components/Heading.astro'; | ||
import Footer from '../components/Footer.astro'; | ||
--- | ||
<Layout> | ||
<Heading /> | ||
<main> | ||
<h2>Contact</h2> | ||
Content here | ||
</main> | ||
<Footer /> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
--- | ||
import Welcome from '../components/Welcome.astro'; | ||
import Layout from '../layouts/Layout.astro'; | ||
import Heading from '../components/Heading.astro'; | ||
import Footer from '../components/Footer.astro'; | ||
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build | ||
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh. | ||
--- | ||
|
||
<Layout> | ||
<Welcome /> | ||
<Heading /> | ||
<main> | ||
<h2>Welcome</h2> | ||
Content here | ||
</main> | ||
<Footer /> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import Layout from '../layouts/Layout.astro'; | ||
import Heading from '../components/Heading.astro'; | ||
import Footer from '../components/Footer.astro'; | ||
--- | ||
<Layout> | ||
<Heading /> | ||
<main> | ||
<h2>Services</h2> | ||
Content here | ||
</main> | ||
<Footer /> | ||
</Layout> |