diff options
| author | 2025-08-12 23:21:56 +0700 | |
|---|---|---|
| committer | 2025-08-12 23:21:56 +0700 | |
| commit | c5c17c6faca1bd0e7b9522010e36e4fdf87aec6a (patch) | |
| tree | ebf5b5212ee0f5fb61210d587f12baa2ab70351e /internal/frontmatter | |
| parent | cd8746883e558e8527355e1c2342e8053848e91c (diff) | |
| download | web-0.5.5.tar.gz web-0.5.5.zip | |
feat: make working timezone shift in galleriesv0.5.5
fix: overflown blog page content
fix: raise footer a bit higher in desktop mode
refactor: start blog catalogue with publication date desc sort
Diffstat (limited to 'internal/frontmatter')
| -rw-r--r-- | internal/frontmatter/parser.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/frontmatter/parser.go b/internal/frontmatter/parser.go index 1a521c0..3c00a7f 100644 --- a/internal/frontmatter/parser.go +++ b/internal/frontmatter/parser.go @@ -16,6 +16,7 @@ type Metadata struct { Thumbnail string `yaml:"thumbnail"` Tags []string `yaml:"tags"` Geolocation string `yaml:"geolocation"` + Timezone string `yaml:"timezone"` } func ParseFrontmatter(content []byte) (metadata *Metadata, markdown []byte, err error) { |