diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index a0df8b8..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Deploy to GitHub Pages - -# https://docs.astro.build/en/guides/deploy/github/ - -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@v2 - # with: - # path: . # The root location of your Astro project inside the repository. (optional) - # node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional) - # package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional) - - 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 diff --git a/astro.config.mjs b/astro.config.mjs index a379e03..882e651 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,7 +1,4 @@ import { defineConfig } from 'astro/config'; // https://astro.build/config -export default defineConfig({ - site: 'https://Fuffy-Bean.github.io', - base: '/website', -}); +export default defineConfig({}); diff --git a/src/components/Card.astro b/src/components/Card.astro index 58f228f..3ebf349 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -34,7 +34,6 @@ const { href, title, body } = Astro.props; box-shadow: 0 0 0 rgba(#000, 0); list-style: none; - overflow: hidden; > a { @@ -93,7 +92,7 @@ const { href, title, body } = Astro.props; &:hover, &:focus-within { > a { - text-decoration: underline; + /*text-decoration: underline;*/ outline: none; } diff --git a/src/components/Music.astro b/src/components/Music.astro index 69efbba..7043b0d 100644 --- a/src/components/Music.astro +++ b/src/components/Music.astro @@ -62,10 +62,6 @@ list-style: none; } } - - &:hover, &:focus-visible { - background-color: lighten($gray, 1%); - } } #music-title { diff --git a/src/content/posts/example.md b/src/content/posts/example.md index d13182f..74e5420 100644 --- a/src/content/posts/example.md +++ b/src/content/posts/example.md @@ -1,6 +1,4 @@ --- -layout: ../../layouts/Markdown.astro - title: This is an example Post description: "Blamby ford" pubDate: 2022-07-08 @@ -14,4 +12,4 @@ tags: - "Fortnite" --- -Gay Balls even \ No newline at end of file +aurgh diff --git a/src/content/posts/markdown-cheat-sheet.md b/src/content/posts/markdown-cheat-sheet.md new file mode 100644 index 0000000..7cb5987 --- /dev/null +++ b/src/content/posts/markdown-cheat-sheet.md @@ -0,0 +1,130 @@ +--- +title: This is an example Post +description: "Cheat Sheet for Markdown" +pubDate: 2022-07-08 +image: + url: "https://docs.astro.build/assets/arc.webp" + alt: "Thumbnail of Astro arcs." +tags: + - "Faggor" +--- + +# Markdown Cheat Sheet + +Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)! + +This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for [basic syntax](https://www.markdownguide.org/basic-syntax/) and [extended syntax](https://www.markdownguide.org/extended-syntax/). + +## Basic Syntax + +These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements. + +### Heading + +# H1 +## H2 +### H3 + +### Bold + +**bold text** + +### Italic + +*italicized text* + +### Blockquote + +> blockquote + +### Ordered List + +1. First item +2. Second item +3. Third item + +### Unordered List + +- First item +- Second item +- Third item + +### Code + +`code` + +### Horizontal Rule + +--- + +### Link + +[Markdown Guide](https://www.markdownguide.org) + +### Image + + + +## Extended Syntax + +These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements. + +### Table + +| Syntax | Description | +| ----------- | ----------- | +| Header | Title | +| Paragraph | Text | + +### Fenced Code Block + +``` +{ + "firstName": "John", + "lastName": "Smith", + "age": 25 +} +``` + +### Footnote + +Here's a sentence with a footnote. [^1] + +[^1]: This is the footnote. + +### Heading ID + +### My Great Heading {#custom-id} + +### Definition List + +term +: definition + +### Strikethrough + +~~The world is flat.~~ + +### Task List + +- [x] Write the press release +- [ ] Update the website +- [ ] Contact the media + +### Emoji + +That is so funny! :joy: + +(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji)) + +### Highlight + +I need to highlight these ==very important words==. + +### Subscript + +H~2~O + +### Superscript + +X^2^ diff --git a/src/content/projects/example-2.md b/src/content/projects/example-2.md index 1dcf758..3aa0672 100644 --- a/src/content/projects/example-2.md +++ b/src/content/projects/example-2.md @@ -1,6 +1,4 @@ --- -layout: ../../layouts/Markdown.astro - title: Project 2 description: Another one image: diff --git a/src/content/projects/example.md b/src/content/projects/example.md index fd5aba9..63f3981 100644 --- a/src/content/projects/example.md +++ b/src/content/projects/example.md @@ -1,6 +1,4 @@ --- -layout: ../../layouts/Markdown.astro - title: Project 1 description: Example Project Im working on image: diff --git a/src/content/projects/gwagwa.md b/src/content/projects/gwagwa.md index 2ae518f..7e10aa9 100644 --- a/src/content/projects/gwagwa.md +++ b/src/content/projects/gwagwa.md @@ -1,6 +1,4 @@ --- -layout: ../../layouts/Markdown.astro - title: GwaGwa description: :3 image: diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index d3e1bd3..13b3678 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -27,46 +27,51 @@ const { title, src, alt } = Astro.props;