A modern, elegant blog built on Val Town with a clean design and simple content management.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # Route modules
│ │ ├── posts.ts # Blog post routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/
│ │ ├── Header.tsx # Blog header
│ │ ├── Footer.tsx # Blog footer
│ │ ├── PostList.tsx # List of blog posts
│ │ └── PostView.tsx # Single post view
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend JS entry point
└── shared/
└── types.ts # Shared types
Visit the blog at the HTTP endpoint URL. To add new posts, use the /admin route.