Skip to content

Commit fac2fa4

Browse files
committed
Change hugo for eleventy
1 parent 21007b3 commit fac2fa4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+114
-1194
lines changed

.github/workflows/hugo.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Node modules
2+
node_modules/
3+
4+
# Logs
5+
npm-debug.log*
6+
7+
.idea
8+
_site/

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

.hugo_build.lock

Whitespace-only changes.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Heading

_includes/layout.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Minimal HTML</title>
6+
<link rel="stylesheet" href="/styles/main.css">
7+
</head>
8+
<body>
9+
<h1>{{title | default: "Amazing Nature"}}</h1>
10+
{{ content }}
11+
</body>
12+
</html>

archetypes/default.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

content/posts/my-first-post.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

content/posts/my-second-post.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

content/posts/my-third-post.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)