summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/more/bookmarks.yml4
l---------content-org/.#blog.org1
-rw-r--r--content-org/blog.org16
-rw-r--r--content/blog/2024/bookmarks-nov.md15
-rw-r--r--layouts/shortcodes/bookmark-month.html20
5 files changed, 53 insertions, 3 deletions
diff --git a/assets/more/bookmarks.yml b/assets/more/bookmarks.yml
index 3440e54..830abc1 100644
--- a/assets/more/bookmarks.yml
+++ b/assets/more/bookmarks.yml
@@ -65,3 +65,7 @@ bookmarks:
title: Coffee at Highest Price in 47 years - Slashdot
date: '2024-11-28'
host: news.slashdot.org
+- url: https://www.latimes.com/entertainment-arts/business/story/2024-12-02/the-casual-moviegoer-is-a-thing-of-the-past-thats-a-big-problem-for-hollywood
+ title: The casual moviegoer is a thing of the past. That's a problem for Hollywood
+ date: '2024-12-02'
+ host: latimes.com
diff --git a/content-org/.#blog.org b/content-org/.#blog.org
deleted file mode 120000
index 6d37990..0000000
--- a/content-org/.#blog.org
+++ /dev/null
@@ -1 +0,0 @@
-mms@voyager.local.16120:1733146398 \ No newline at end of file
diff --git a/content-org/blog.org b/content-org/blog.org
index 00d1536..b2da9a9 100644
--- a/content-org/blog.org
+++ b/content-org/blog.org
@@ -8,11 +8,11 @@
#+HUGO_SECTION: blog
-* 2024 [102/104] :@blog:
+* 2024 [103/105] :@blog:
:PROPERTIES:
:EXPORT_HUGO_SECTION: blog/2024
:EXPORT_HUGO_CUSTOM_FRONT_MATTER+: :image_dir "blog/images" :image_max_width 600
-:EXPORT_HUGO_PAIRED_SHORTCODES: image yt
+:EXPORT_HUGO_PAIRED_SHORTCODES: image yt bookmark-month
:END:
@@ -123,6 +123,18 @@ It's small annoyance, but it shows the general direction.
Microsoft GitHub is still not near the biggest sin an Open Source can commit when it comes to cooperation (that crown still goes to using Discord), but it's far from being "Open".
**
+** DONE Bookmark dump for November 2024
+CLOSED: [2024-12-02 Mon 22:00]
+:PROPERTIES:
+:EXPORT_FILE_NAME: bookmarks-nov
+:EXPORT_HUGO_CUSTOM_FRONT_MATTER+: :Abstract Link dump!
+:END:
+
+#+attr_shortcode: :month 2024-11
+#+begin_bookmark-month
+2024-11
+#+end_bookmark-month
+
** DONE GenAI dealers and self awareness
CLOSED: [2024-12-02 Mon 14:49]
:PROPERTIES:
diff --git a/content/blog/2024/bookmarks-nov.md b/content/blog/2024/bookmarks-nov.md
new file mode 100644
index 0000000..d662100
--- /dev/null
+++ b/content/blog/2024/bookmarks-nov.md
@@ -0,0 +1,15 @@
++++
+title = "Bookmark dump for November 2024"
+author = ["MichaƂ Sapka"]
+date = 2024-12-02T22:00:00+01:00
+categories = ["blog"]
+draft = false
+weight = 2001
+image_dir = "blog/images"
+image_max_width = 600
+Abstract = "Link dump!"
++++
+
+{{< bookmark-month month="2024-11" >}}
+2024-11
+{{< /bookmark-month >}}
diff --git a/layouts/shortcodes/bookmark-month.html b/layouts/shortcodes/bookmark-month.html
new file mode 100644
index 0000000..499f538
--- /dev/null
+++ b/layouts/shortcodes/bookmark-month.html
@@ -0,0 +1,20 @@
+{{- $noop := .Inner }}
+{{- $month := .Params.month }}
+{{ with resources.Get "more/bookmarks.yml"}}
+{{ with . | transform.Unmarshal }}
+<p>Here are some cool webpages I've found recently:</p>
+<ul>
+ {{ range (sort .bookmarks ".date" "desc") }}
+ {{ if strings.Contains .date $month }}
+ <li>
+ {{ .date }}
+ -
+ <a href="{{ .url }}">{{ .title }}</a>
+ ({{ .host }})
+
+ {{ end }}
+ {{ end }}
+</ul>
+{{ end }}
+<p>You can find more on <a href="/more/bookmarks">Bookmarks</a></p>
+{{ end }}