a solid start
This commit is contained in:
commit
04cf8eb646
36 changed files with 3512 additions and 0 deletions
21
site/_includes/base.njk
Normal file
21
site/_includes/base.njk
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: Joshua's Homepage
|
||||
---
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="{{ "/assets/tufte.css" | url }}"/>
|
||||
<title>{{ title }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>
|
||||
{{ title }}
|
||||
</h1>
|
||||
</header>
|
||||
{{ content | safe }}
|
||||
</body>
|
||||
</html>
|
3
site/_includes/post.njk
Normal file
3
site/_includes/post.njk
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
layout: base.njk
|
||||
---
|
5
site/blog/2024-06-05--first-post.md
Normal file
5
site/blog/2024-06-05--first-post.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Hello world
|
||||
---
|
||||
|
||||
It's my first post!
|
5
site/blog/blog.json
Normal file
5
site/blog/blog.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"layout": "post.njk",
|
||||
"permalink": "/posts/{{ title | slugify }}/",
|
||||
"tags": "posts"
|
||||
}
|
22
site/index.md
Normal file
22
site/index.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
layout: base
|
||||
title: joshua.seigler.net
|
||||
---
|
||||
|
||||
## Posts
|
||||
|
||||
{% for post in collections.posts %}
|
||||
- [{{ post.data.title }}]({{ post.url }})
|
||||
{% endfor %}
|
||||
|
||||
## Music
|
||||
|
||||
{% for m in music %}
|
||||
- [{{ m }}](music/{{ m | slug }}.pdf)
|
||||
{% endfor %}
|
||||
|
||||
## Recipes
|
||||
|
||||
{% for recipe in collections.recipes %}
|
||||
- [{{ recipe.data.title }}]({{ recipe.url }})
|
||||
{% endfor %}
|
BIN
site/music/It Is Truly Meet - Macedonian.pdf
Normal file
BIN
site/music/It Is Truly Meet - Macedonian.pdf
Normal file
Binary file not shown.
BIN
site/music/Îngerul a Strigat - Varlaam - glasul 3.pdf
Normal file
BIN
site/music/Îngerul a Strigat - Varlaam - glasul 3.pdf
Normal file
Binary file not shown.
22
site/recipes/corn-casserole.md
Normal file
22
site/recipes/corn-casserole.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: Corn Casserole
|
||||
---
|
||||
|
||||
## Ingredients
|
||||
|
||||
- 2 cans of corn, drained
|
||||
- 2 cans of creamed corn
|
||||
- 2 cups sour cream
|
||||
- 2 stick melted butter (1 cup)
|
||||
- 16 oz cornbread mix
|
||||
|
||||
## Instructions
|
||||
|
||||
1. Preheat the oven to 350 degrees.
|
||||
1. In a bowl, mix all of the ingredients together, adding the corn last.
|
||||
1. Pour into an 9"x13" baking pan.
|
||||
1. Cook uncovered for 45-50 minutes or until lightly browned.
|
||||
|
||||
## Notes
|
||||
|
||||
Vegan substitutions: almond milk instead of sour cream, vegetable butter or neutral oil instead of butter. Made this way, the result will be less bready but still excellent. Extend cooking time slightly.
|
4
site/recipes/recipes.json
Normal file
4
site/recipes/recipes.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"layout": "base.njk",
|
||||
"tags": "recipes"
|
||||
}
|
25
site/recipes/sloppy-joes.md
Normal file
25
site/recipes/sloppy-joes.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
title: Sloppy Joes
|
||||
---
|
||||
## Ingredients
|
||||
|
||||
- 1 lb. hamburger
|
||||
- 1/2 teaspoon paprika
|
||||
- 1 teaspoon chili powder
|
||||
- 1 Tablespoon dry mustard
|
||||
- 1 Tablespoon chopped parsley
|
||||
- 1 Tablespoon Worcestershire sauce
|
||||
- v2 Tablespoons brown sugar
|
||||
- 2 Tablespoons vinegar
|
||||
- 1/2 cup chopped onion
|
||||
- 1/2 cup Ketchup
|
||||
- 1 cup water
|
||||
|
||||
## Instructions
|
||||
|
||||
1. Brown beef with onion, draining fat.
|
||||
1. Add all remaining ingredients and bring to a boil.
|
||||
1. Simmer 20 minutes or until thickened, stirring occasionally.
|
||||
1. Refrigerate overnight, serve hot.
|
||||
|
||||
Recipe originally from Connie Henderson, Charlottesville, VA
|
Loading…
Add table
Add a link
Reference in a new issue