Remove old content, keep only noorlander.info blog posts
- Removed demo content and old structure - Updated home.md to showcase blog categories - Clean content directory with only Edwin's blog posts
This commit is contained in:
parent
4d3c3391f7
commit
0dbe4317e2
@ -1,24 +0,0 @@
|
||||
# About CodePress
|
||||
|
||||
CodePress is a lightweight content management system designed for simplicity and ease of use.
|
||||
|
||||
## Philosophy
|
||||
|
||||
- **Simplicity First**: No complex database required
|
||||
- **File-based**: Content is stored in simple files
|
||||
- **Flexible**: Support for both static content (Markdown) and dynamic content (PHP)
|
||||
- **Modern**: Built with responsive Bootstrap 5 design
|
||||
|
||||
## Technology Stack
|
||||
|
||||
- **PHP 7.4+** for server-side logic
|
||||
- **Bootstrap 5** for responsive design
|
||||
- **File-based content storage**
|
||||
- **Simple templating system**
|
||||
|
||||
## Perfect For
|
||||
|
||||
- Personal blogs
|
||||
- Documentation sites
|
||||
- Small business websites
|
||||
- Portfolio sites
|
||||
@ -1,28 +0,0 @@
|
||||
# Getting Started with CodePress
|
||||
|
||||
Learn how to set up your first CodePress website in just a few minutes.
|
||||
|
||||
## Installation
|
||||
|
||||
1. Download the CodePress files
|
||||
2. Upload to your PHP-enabled server
|
||||
3. Set appropriate permissions
|
||||
4. Start adding content!
|
||||
|
||||
## Your First Page
|
||||
|
||||
Create a new file in the `content/` directory:
|
||||
|
||||
```markdown
|
||||
# My First Page
|
||||
|
||||
This is the content of my first page.
|
||||
```
|
||||
|
||||
Save it as `my-page.md` and visit `?page=my-page` to see it live!
|
||||
|
||||
## Advanced Features
|
||||
|
||||
- Use PHP files for dynamic content
|
||||
- Organize content in subdirectories
|
||||
- Customize the appearance through templates
|
||||
@ -1,11 +0,0 @@
|
||||
# Blog
|
||||
|
||||
Welcome to our blog section. Here you'll find articles, tutorials, and updates about CodePress and web development.
|
||||
|
||||
## Recent Posts
|
||||
|
||||
Check out our latest blog posts using the menu on the left.
|
||||
|
||||
## Categories
|
||||
|
||||
Our blog posts are organized into different categories for easy navigation.
|
||||
@ -1,36 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact Us</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Contact Us</h1>
|
||||
|
||||
<div class="contact-form">
|
||||
<form>
|
||||
<div class="mb-3">
|
||||
<label for="name" class="form-label">Name</label>
|
||||
<input type="text" class="form-control" id="name" placeholder="Your name">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">Email</label>
|
||||
<input type="email" class="form-control" id="email" placeholder="your@email.com">
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="message" class="form-label">Message</label>
|
||||
<textarea class="form-control" id="message" rows="3"></textarea>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send Message</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="contact-info mt-4">
|
||||
<h3>Contact Information</h3>
|
||||
<p><strong>Email:</strong> info@codepress.com</p>
|
||||
<p><strong>Phone:</strong> +31 123 456 789</p>
|
||||
<p><strong>Address:</strong> Amsterdam, Netherlands</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -1,39 +0,0 @@
|
||||
<?php
|
||||
$title = "Dynamic PHP Example";
|
||||
$currentTime = date('Y-m-d H:i:s');
|
||||
$visitorCount = rand(1000, 9999);
|
||||
?>
|
||||
|
||||
<h2>PHP Dynamic Content</h2>
|
||||
|
||||
<p>This page demonstrates how PHP files can generate dynamic content.</p>
|
||||
|
||||
<div class="alert alert-info">
|
||||
<strong>Current Time:</strong> <?php echo $currentTime; ?>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
Statistics
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p><strong>Visitor Count:</strong> <?php echo number_format($visitorCount); ?></p>
|
||||
<p><strong>PHP Version:</strong> <?php echo phpversion(); ?></p>
|
||||
<p><strong>Server Software:</strong> <?php echo $_SERVER['SERVER_SOFTWARE'] ?? 'Unknown'; ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3>Random Quote</h3>
|
||||
<?php
|
||||
$quotes = [
|
||||
"Simplicity is the ultimate sophistication.",
|
||||
"Code is poetry.",
|
||||
"Less is more.",
|
||||
"Keep it simple, stupid."
|
||||
];
|
||||
$randomQuote = $quotes[array_rand($quotes)];
|
||||
?>
|
||||
|
||||
<blockquote class="blockquote">
|
||||
<p><?php echo $randomQuote; ?></p>
|
||||
</blockquote>
|
||||
@ -1,11 +0,0 @@
|
||||
# CSS Tutorials
|
||||
|
||||
Style your web pages with modern CSS.
|
||||
|
||||
## Flexbox and Grid
|
||||
|
||||
Modern layout techniques for responsive design.
|
||||
|
||||
## Animations
|
||||
|
||||
Create smooth animations and transitions.
|
||||
@ -1,11 +0,0 @@
|
||||
# HTML Tutorials
|
||||
|
||||
Master HTML5 and modern web development.
|
||||
|
||||
## Semantic HTML
|
||||
|
||||
Learn about proper HTML structure and accessibility.
|
||||
|
||||
## Forms and Input
|
||||
|
||||
Creating interactive forms and validation.
|
||||
@ -1,11 +0,0 @@
|
||||
# PHP Tutorials
|
||||
|
||||
Learn PHP programming with our comprehensive tutorials.
|
||||
|
||||
## Getting Started
|
||||
|
||||
Introduction to PHP basics and syntax.
|
||||
|
||||
## Advanced Topics
|
||||
|
||||
Object-oriented programming, databases, and more.
|
||||
@ -1,22 +1,21 @@
|
||||
# Welcome to CodePress
|
||||
# CodePress Blog
|
||||
|
||||
This is a simple PHP CMS built with Bootstrap and Mustache-style templating.
|
||||
Welkom op de persoonlijke blog van Edwin Noorlander. Hier deel ik mijn gedachten, ervaringen en kennis over technologie, open-source software en digitale transformatie.
|
||||
|
||||
## Features
|
||||
## Categorieën
|
||||
|
||||
- **Dynamic Content**: Supports both Markdown and PHP files
|
||||
- **Auto-generated Menu**: Automatically creates navigation from content directory structure
|
||||
- **Responsive Design**: Built with Bootstrap 5
|
||||
- **Simple Configuration**: Easy to customize via config.php
|
||||
### Over Mij
|
||||
- [Welkom, ik ben Edwin](/blog/over-mij/welkom) - Mijn persoonlijke verhaal en achtergrond
|
||||
|
||||
## Getting Started
|
||||
### Open Source
|
||||
- [De Toekomst van ICT](/blog/open-source/de-toekomst-van-ict) - Hoe open source software de werkvloer transformeert
|
||||
- [Standaardisatie](/blog/open-source/standaardisatie) - Het belang van standaarden en de tegenstelling tussen commerciële bedrijven en open-source gemeenschappen
|
||||
|
||||
1. Add your content files to the `content/` directory
|
||||
2. Use either `.md` or `.php` extensions
|
||||
3. The menu will automatically update to show your content structure
|
||||
### Leren & Ontwikkeling
|
||||
- [Kennis boven Aantallen](/blog/leren/kennis-boven-aantallen) - Het cruciale belang van kennis boven personeelsaantallen in de werkkracht
|
||||
|
||||
## Content Structure
|
||||
## Over Edwin Noorlander
|
||||
|
||||
The content directory structure determines the navigation menu. Folders become section headers and files become menu items.
|
||||
Ik ben adviseur bij de overheid met een passie voor technologie, innovatie en open-source software. Met een achtergrond in micro-elektronica en diverse programmeertalen, deel ik graag mijn kennis en ervaringen om anderen te inspireren.
|
||||
|
||||
Enjoy using CodePress!
|
||||
**Meer weten?** Bezoek mijn [persoonlijke website](https://noorlander.info) of volg mijn projecten op [GitLab](https://git.noorlander.info).
|
||||
@ -1,11 +0,0 @@
|
||||
# Mobile Projects
|
||||
|
||||
Mobile application development examples.
|
||||
|
||||
## React Native App
|
||||
|
||||
Cross-platform mobile application.
|
||||
|
||||
## Progressive Web App
|
||||
|
||||
Modern PWA with offline functionality.
|
||||
@ -1,11 +0,0 @@
|
||||
# Web Projects
|
||||
|
||||
Examples of web development projects.
|
||||
|
||||
## E-commerce Site
|
||||
|
||||
Full-stack e-commerce application.
|
||||
|
||||
## Blog Platform
|
||||
|
||||
Content management system with user authentication.
|
||||
Loading…
x
Reference in New Issue
Block a user