Welcome to Racket CMS
Welcome to your new Racket CMS! This is a clean, minimalist content management system built with the Racket programming language.
Features
This CMS includes the following features:
- Markdown-based articles - Write your content in clean, simple Markdown
- User authentication - Secure login system with session management
- Admin dashboard - Manage your content with an intuitive interface
- Responsive design - Looks great on desktop and mobile devices
- Fast and lightweight - Built for performance and simplicity
Getting Started
To start creating content:
- Log in to the admin panel using the default credentials (admin/admin123)
- Change your password immediately for security
- Navigate to the admin dashboard to manage articles
- Create new articles by adding Markdown files to the `articles/` directory
Writing Articles
Articles are written in Markdown format with frontmatter metadata. Here's the structure:
```markdown
---
title: Your Article Title
date: 2024-01-15
author: Your Name
tags: [tag1, tag2, tag3]
slug: your-article-url-slug
draft: false
---
Your Article Content
Write your article content here using Markdown syntax.
```
Security Note
Important: The default admin credentials are `admin/admin123`. Please change this password immediately after your first login for security purposes.
Enjoy using your new Racket CMS!