get updating posts working

This commit is contained in:
Travis Shears 2025-10-05 14:22:11 +02:00
parent 972707e5fd
commit 6b8ba76018
6 changed files with 148 additions and 53 deletions

View file

@ -9,11 +9,11 @@ import (
// GemlogEntry represents a single gemlog post entry
type GemlogEntry struct {
Title string `json:"title"`
Slug string `json:"slug"`
Date time.Time `json:"date"`
Tags []string `json:"tags"`
Gemtxt string `json:"gemtxt"`
Title string `json:"title"`
Slug string `json:"slug"`
Date time.Time `json:"date"`
// Tags []string `json:"tags"`
Gemtxt string `json:"gemtxt"`
}
type GemlogListEntry struct {