Compare commits

...

2 Commits

Author SHA1 Message Date
369521bda2 Add cabinet page 2025-08-07 13:50:15 -06:00
5d31cba56f Generate thumbnails in dev as well 2025-06-24 15:19:29 -06:00
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
Title: Three Drawer Cabinet
Date: 2025-03-18
Category: Creations
Summary: A three-drawer cabinet with a laser etched design.
Image: cabinet1.jpg
xTags: feed
I built a three drawer cabinet for storing embroidery machine supplies at my local makerspace, [[Protospace]]. It was built to fit under the machine, inside its metal stand.
![[cabinet1.jpg]]
The side features a laser etched flower design I found online. The cabinet is assembled using pocket screws because I wanted to learn how to use them.
Here's what it looks like installed:
![[cabinet2.jpg]]

BIN
content/media/cabinet1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 560 KiB

BIN
content/media/cabinet2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 KiB

View File

@@ -2,6 +2,11 @@
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import sys
sys.path.append('.')
import generate_thumbnails
PATH = 'content'
TIMEZONE = 'Canada/Mountain'
@@ -33,6 +38,7 @@ MARKDOWN = {
PLUGINS = [
'obsidian',
'linkclass',
'generate_thumbnails',
]
STATIC_PATHS = ['media', 'extra']