Welcome to Our Minimal Site

This is a minimal demonstration of Super-Simple Includes using only text includes and semantic HTML. No CSS, no variables, no blocks - just the simplest possible content/design separation.

First Article

This is the content for our first article. It demonstrates how text files can contain meaningful content that gets included into the HTML structure. The text is automatically HTML-escaped for security, so any <script> tags or HTML markup would be displayed as literal text rather than being interpreted by the browser. Notice how the content stays cleanly separated from the HTML structure — the article element and heading are defined in the page, while the actual content comes from this text file. CSS Exception Note: This minimal example includes one small CSS rule (`white-space: pre-line`) to preserve the line breaks you see here while collapsing the HTML indentation. Without it, all the text would run together in one long paragraph, making it much harder to read. This is the only styling needed to make text includes practical and readable.

Second Article

Here's our second article with completely different content. This shows how the same HTML structure can display varied content by using different text files. Benefits of this approach: — Content writers can focus on writing without touching HTML — Designers can focus on structure without worrying about specific content — Content can be updated independently of design changes — Multiple people can work on content and design simultaneously This separation makes websites easier to maintain and update over time.

Third Article

Our third and final article demonstrates that you can have as many text includes as needed. Each article gets its own text file, making content organization simple and logical. Some key advantages: — Easy to find and edit specific content — Version control works well with separate files — Content can be reused in different contexts if needed — No risk of accidentally breaking HTML structure while editing content This minimal example shows the core concept without any complexity — just pure content/design separation using the 📜 text include syntax.