---
title: ziosec
description: Security engineering, written down.
---

# ziosec

Welcome. This is a tiny example site that serves the **same content in two formats**:

- **HTML** for browsers — what you see if you visit `/` in a normal browser.
- **Markdown** for AI agents — fetch `/index.md` directly, or send
  `Accept: text/markdown`, or use a known agent User-Agent.

The middleware at `src/middleware.ts` does content negotiation. Each page has a
twin `.md.ts` endpoint that returns the raw source.

## Try it

```
curl https://staging.ziosec.com/
curl https://staging.ziosec.com/index.md
curl -H 'Accept: text/markdown' https://staging.ziosec.com/
```
