Przeglądaj źródła

Main page configured and about page

Lars 1 rok temu
rodzic
commit
56fa156923
5 zmienionych plików z 91 dodań i 3 usunięć
  1. 3 0
      .gitignore
  2. 13 0
      content/_index.md
  3. 20 0
      content/about.md
  4. 10 0
      content/nature/index.md
  5. 45 3
      hugo.toml

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+public/*
+resources/*
+*.lock

+ 13 - 0
content/_index.md

@@ -0,0 +1,13 @@
+---
+#lastmod: 2023-07-05
+title: Lars's Photography Endeavors
+description: Welcome to my photography portfolio
+menus:
+  main:
+    name: Home
+    weight: -1
+
+# sub-galleries on list pages are sorted by date and weight (descending)
+---
+
+

+ 20 - 0
content/about.md

@@ -0,0 +1,20 @@
+---
+layout: page
+rss_ignore: true
+title: About
+menus:
+  footer:
+    weight: 1
+---
+
+All photos were captured with a Nikon Z5 and processed with [Rawtherapee](https://www.rawtherapee.com/). 
+
+You can purchase digital downloads of the pictures without watermarks, as well as the raw files and Rawtherapee settings I used for processing, in the [store](https://ko-fi.com/larsp)
+
+I like to bring the camera on hikes and trips to capture punchy and artistic images of whatever interesting sight I stumble on.
+
+I like tinkering with old and weird lenses. Fixing them, cleaning them, finding their strong and weak points and using it all for artistic gain. A mirrorless camera is great for this as the short flange distance allows adapters to be made for all sorts of mounts. And with a camera that sports sensor shift stabilization, you get optical image stabilization for any old lens.
+
+Watermark imprinting and rescaling was done automatically by the masterimg python script. The page was made with [Hugo](https://gohugo.io/) and the [hugo-theme-gallery](https://github.com/nicokaiser/hugo-theme-gallery)
+
+Contact: contact@larsee.com

+ 10 - 0
content/nature/index.md

@@ -0,0 +1,10 @@
+---
+# description: 
+featured_image: Pretty sun on road_hq.jpg
+menus: "main"
+sort_by: Name # Exif.Date
+sort_order: desc
+title: Nature
+#type: gallery
+weight: 3
+---

+ 45 - 3
hugo.toml

@@ -1,4 +1,46 @@
 baseURL = 'https://example.org/'
-languageCode = 'en-us'
-title = 'My New Hugo Site'
-theme = 'gallery'
+
+copyright = "© 2024 by Lars Ole Pontoppidan"
+defaultContentLanguage = "en"
+disableKinds = ["taxonomy", "term"]
+enableRobotsTXT = true
+languageCode = "en"
+timeZone = "Europe/Sofia"
+timeout = "120s"
+title = ""
+theme = "gallery"
+
+[params]
+  defaultTheme = "dark"
+  [params.author]
+    email = "contact@larsee.com"
+    name = "Lars Ole Pontoppidan"
+
+[outputs]
+  home = ["HTML", "RSS"]
+  page = ["HTML"]
+  section = ["HTML"]
+
+[imaging]
+  quality = 75
+  resampleFilter = "CatmullRom"
+  [imaging.exif]
+    disableDate = false
+    disableLatLong = true
+    includeFields = "ImageDescription"
+
+[menu]
+  [[menu.footer]]
+    name = "Blog"
+    url = "https://larsee.com/blog"
+    weight = 4
+
+  [[menu.footer]]
+    name = "Store"
+    url = "https://ko-fi.com/larsp"
+    weight = 3
+
+
+[services]
+  [services.rss]
+    limit = 100