-
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
1 parent
845d96b
commit 2f72243
Showing
2 changed files
with
17 additions
and
47 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,49 +1,19 @@ | ||
--- | ||
title: 'Example Post with All Elements' | ||
date: "2024-06-25" | ||
tags: ['Markdown', 'Nunjucks', 'Example'] | ||
image: "/assets/images/blog/example.webp" | ||
rt: '5 min read' | ||
description: This post contains examples of all elements we styled and discussed. | ||
layout: "layouts/post.html" | ||
permalink: "posts/{{ title | slug }}/index.html" | ||
css: "/assets/css/post.css" | ||
title: 'Project Spotlight - Portfolio Site' | ||
date: '2024-06-24' | ||
tags: | ||
[ | ||
'Project', | ||
'Eleventy', | ||
'Amazon S3', | ||
'Amazon Lambda', | ||
'Amazon API Gateway', | ||
'Amazon SNS', | ||
] | ||
image: '/assets/images/blog/3.png' | ||
rt: '10 min read' | ||
description: Learn how I built this portfolio website and my thoughts about the process! | ||
layout: 'layouts/post.html' | ||
permalink: 'posts/{{ title | slug }}/index.html' | ||
css: '/assets/css/post.css' | ||
--- | ||
|
||
# Welcome to My Example Post | ||
|
||
This is an example post demonstrating all the elements we styled and discussed. | ||
|
||
## Subheading Level 2 | ||
|
||
Here is a paragraph with some *italic text* and **bold text**. You can also have ***bold and italic text*** together. | ||
|
||
### Subheading Level 3 | ||
|
||
Here is a list of items: | ||
|
||
- Item 1 | ||
- Item 2 | ||
- Subitem 2.1 | ||
- Subitem 2.2 | ||
|
||
Here is an ordered list: | ||
|
||
1. First item | ||
2. Second item | ||
1. Subitem 2.1 | ||
2. Subitem 2.2 | ||
|
||
#### Subheading Level 4 | ||
|
||
Here is a [link to Google](https://www.google.com). | ||
|
||
![Example Image](/assets/images/blog/example.webp) | ||
|
||
> This is a blockquote. Blockquotes are useful for highlighting important information or quotes from external sources. | ||
Here is some `inline code` to demonstrate how code looks within a sentence. | ||
|
||
```javascript | ||
// This is a code block | ||
console.log('Hello, world!'); |