1
0

3 Commits 42554a3e4a ... 45afd06f67

Autor SHA1 Nachricht Datum
  Your Name 45afd06f67 add some notes vor 10 Monaten
  Your Name 7e8c98f857 inception done vor 10 Monaten
  Your Name aaafbc2d1e save before hardlink vor 10 Monaten
4 geänderte Dateien mit 28 neuen und 1 gelöschten Zeilen
  1. 6 0
      README.md
  2. 7 0
      inception.md
  3. 2 1
      web/content/posts/my-first-post.md
  4. 13 0
      web/hugo.toml

+ 6 - 0
README.md

@@ -1,3 +1,9 @@
++++
+date = '2025-04-13T13:14:28-07:00'
+draft = false
+title = 'Kyleguy Inception'
++++
+
 # kyleguy
 There are a few things that need to be setup to have a website.  One needs a domain.  This is just a name that people use to identify something.  Google owns many domains, for example: `www.google.com`, `google.com`, `gmail.com`.  These domains have various meanings to different people, but to you `google.com` probably means a website where one can find other websites, products, services, etc on the Internet.  We need a domain.  We need a place for our website to exist, we are going to host our website at `pebbleguy.com`.  We also need a way to edit our site.  These three things are really all that we need, each might abstract some difficulties, but nothing is too complex.  For example to have a domain we need to manage the Domain Name System, it is easy albeit esoteric.
 

+ 7 - 0
inception.md

@@ -0,0 +1,7 @@
+# to incept
+use the `[[modules.mount]]` feature under hugo just a note from emma/kyle hugo removed support for [symlinks](https://github.com/gohugoio/hugo/issues/11556), the underlying [Go filepath](https://pkg.go.dev/path/filepath#Walk) Walk/WalkDir do not follow symbolic links.
+
+# hugo on linux - for an existing project you need to redownload the theme because it is only included in the project as a module:
+```
+git submodule update --init --recursive
+```

+ 2 - 1
web/content/posts/my-first-post.md

@@ -1,6 +1,6 @@
 +++
 date = '2025-04-11T17:55:20-05:00'
-draft = true
+draft = false
 title = 'My First Post'
 +++
 ## Introduction
@@ -8,3 +8,4 @@ title = 'My First Post'
 This is **bold** text, and this is *emphasized* text.
 
 I like pebbles.  And I like nonsense.
+![a-gargoyle](/images/gohugo-default-sample-hero-image.jpg)

+ 13 - 0
web/hugo.toml

@@ -2,3 +2,16 @@ baseURL = 'https://kyleguy.rome7.com/'
 languageCode = 'en-us'
 title = 'kyleguy'
 theme = 'ananke'
+
+[module]
+  [[module.mounts]]
+    source = "content"
+    target = "content"
+  [[module.mounts]]
+    source = "/mnt/external/projects/kyleguy/README.md"
+    target = "content/posts/kyleguy-inception.md"
+    lang = "en"
+  [[module.mounts]]
+    source = "/mnt/external/projects/kyleguy/images"
+    target = "content/posts/kyleguy-inception/images"
+    lang = "en"