mirror of
https://codeberg.org/sofiaritz/website.git
synced 2023-09-06 01:24:41 +00:00
Move Nunjucks templates and Markdown files to the src/
folder
This commit is contained in:
parent
c3c82b8e5a
commit
4a1c682d20
16 changed files with 5 additions and 3 deletions
|
@ -2,7 +2,6 @@ const { DateTime } = require("luxon")
|
||||||
const timeToRead = require("eleventy-plugin-time-to-read")
|
const timeToRead = require("eleventy-plugin-time-to-read")
|
||||||
|
|
||||||
module.exports = function(eleventyConfig) {
|
module.exports = function(eleventyConfig) {
|
||||||
eleventyConfig.addPassthroughCopy("css")
|
|
||||||
eleventyConfig.addPassthroughCopy({ "static": "/" })
|
eleventyConfig.addPassthroughCopy({ "static": "/" })
|
||||||
|
|
||||||
eleventyConfig.addPlugin(timeToRead, {
|
eleventyConfig.addPlugin(timeToRead, {
|
||||||
|
@ -21,6 +20,9 @@ module.exports = function(eleventyConfig) {
|
||||||
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat('yyyy-LL-dd');
|
return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat('yyyy-LL-dd');
|
||||||
})
|
})
|
||||||
return {
|
return {
|
||||||
passthroughFileCopy: true
|
passthroughFileCopy: true,
|
||||||
|
dir: {
|
||||||
|
input: "src"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<link rel="stylesheet" href="/css/comments.css" type="text/css">
|
<link rel="stylesheet" href="/css/comments.css" type="text/css">
|
||||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300&family=Rubik:ital,wght@0,400;0,500;1,400;1,500&display=swap" type="text/css">
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;1,300&family=Rubik:ital,wght@0,400;0,500;1,400;1,500&display=swap" type="text/css">
|
||||||
{% if load_comments_script %}
|
{% if load_comments_script %}
|
||||||
<script src="/assets/scripts/dompurify.js"></script>
|
<script src="/scripts/dompurify.js"></script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
Loading…
Reference in a new issue