init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export default function (eleventyConfig) {
|
||||
eleventyConfig.addPassthroughCopy("src/assets");
|
||||
|
||||
return {
|
||||
dir: {
|
||||
input: "src",
|
||||
output: "_site",
|
||||
},
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "blog",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"build": "eleventy",
|
||||
"serve": "eleventy --serve"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy": "^3.0.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ title }}</title>
|
||||
<link rel="authorization_endpoint" href="https://blog.giersig.eu/auth">
|
||||
<link rel="token_endpoint" href="https://blog.giersig.eu/token">
|
||||
<link rel="micropub" href="https://blog.giersig.eu/micropub">
|
||||
</head>
|
||||
<body>
|
||||
{{ content | safe }}
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Blog
|
||||
layout: base.njk
|
||||
---
|
||||
# Willkommen
|
||||
Reference in New Issue
Block a user