Fake Layout - this file not in layouts directory

My First Blog Post

Published on: 2022-07-01

Markdown - My First Blog Post

This is the first post of my new Astro blog.

Written by: Krix Daniel

The Astro logo on a dark background with a pink glow.

astro

blogging

learning in public

Reading time: 4 min read

View count:

Lorem Ipsum Markdown Example

Table of Contents

  1. Headings
  2. Paragraphs and Line Breaks
  3. Emphasis
  4. Blockquotes
  5. Lists
  6. Code
  7. Horizontal Rule
  8. Links
  9. Images
  10. Tables
  11. Task Lists
  12. Footnotes
  13. Strikethrough
  14. HTML in Markdown

Headings

Heading 1

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Heading 2

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Heading 3

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Heading 4

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Heading 5

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Heading 6

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Paragraphs and Line Breaks

Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Vestibulum euismod, nisi vel consectetur euismod, nisl nunc interdum nisl, at sodales nisl nunc sit amet nisl.

Emphasis

Italic text using asterisk
Italic text using underscore

Bold text using asterisks
Bold text using underscores

Bold and italic using asterisks
Bold and italic using underscores

Blockquotes

“Lorem ipsum dolor sit amet, consectetur adipiscing elit.”
— Cicero

Lists

Unordered List

Ordered List

  1. Lorem ipsum
  2. Dolor sit amet
  3. Consectetur adipiscing elit

Code

Inline Code

Use console.log('Hello, world!') to debug.

Block Code

function greet(name) {
  console.log(`Hello, ${name}!`);
}
greet('World');

Horizontal Rule


Above is a horizontal rule.

Visit OpenAI
https://www.lipsum.com

Images

An old rock in the desert

Tables

SyntaxDescription
HeaderTitle
CellContent

Task Lists

Footnotes

Here’s a sentence with a footnote.1

Strikethrough

This sentence is outdated.

HTML in Markdown

This is an HTML paragraph inside Markdown with lorem ipsum.

* Without the backslash, this would be a bullet in an unordered list.

My First Blog Post

Published on: 2022-07-01

Welcome to my new blog about learning Astro! Here, I will share my learning journey as I build a new website.

What I’ve accomplished

  1. Installing Astro: First, I created a new Astro project and set up my online accounts.

  2. Making Pages: I then learned how to make pages by creating new .astro files and placing them in the src/pages/ folder.

  3. Making Blog Posts: This is my first blog post! I now have Astro pages and Markdown posts!

What’s next

I will finish the Astro tutorial, and then keep adding more posts. Watch this space for more to come.

Footnotes

  1. This is the footnote content with lorem ipsum.