1
0
mirror of https://github.com/elisspace/blog-test.git synced 2026-08-29 15:43:52 +00:00

start customizing after successful proof of concept

This commit is contained in:
Eli
2023-09-11 21:11:42 -04:00
committed by GitHub
parent 3ff493cd73
commit a85556a677
3 changed files with 9 additions and 9 deletions

View File

@@ -1,11 +1,11 @@
module.exports = { module.exports = {
title: "Eleventy Base Blog v8", title: "Eli's Limited",
url: "https://example.com/", url: "https://eli.limited",
language: "en", language: "en",
description: "I am writing about my experiences as a naval navel-gazer.", description: "human musings",
author: { author: {
name: "Your Name Here", name: "Eli",
email: "youremailaddress@example.com", email: "ylc5xmdvg@mozmail.com",
url: "https://example.com/about-me/" url: "https://eli.limited/about"
} }
} }

View File

@@ -1,7 +1,7 @@
--- ---
layout: layouts/base.njk layout: layouts/base.njk
--- ---
<!-- Delete this message, it will also remove the component CSS from the bundle --> {# <!-- Delete this message, it will also remove the component CSS from the bundle -->
{%- css %}{% include "public/css/message-box.css" %}{% endcss %} {%- css %}{% include "public/css/message-box.css" %}{% endcss %}
<div class="message-box"> <div class="message-box">
<ol> <ol>
@@ -11,6 +11,6 @@ layout: layouts/base.njk
</ol> </ol>
<p><em>This is an <a href="https://www.11ty.dev/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p> <p><em>This is an <a href="https://www.11ty.dev/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p>
</div> </div>
<!-- Stop deleting --> <!-- Stop deleting --> #}
{{ content | safe }} {{ content | safe }}

View File

@@ -22,7 +22,7 @@ module.exports = function(eleventyConfig) {
// https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets // https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets
// Watch content images for the image pipeline. // Watch content images for the image pipeline.
eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}"); // eleventyConfig.addWatchTarget("content/**/*.{svg,webp,png,jpeg}");
// App plugins // App plugins
eleventyConfig.addPlugin(pluginDrafts); eleventyConfig.addPlugin(pluginDrafts);