- Convert MDX CodeBlock components to standard markdown code fences - Add rehype-mdx-code-props to pass filename meta to code components - Custom pre/code MDX components map fences to CodeBlock - Add brand color badges (product + category) matching /learn layout - Match prose styling: orange inline code, orange links, white strong - Remove brand color background glow (not in /learn)
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
---
|
|
title: "Flask"
|
|
description: "Add Pulse analytics to your Flask app. Jinja2 template integration."
|
|
category: "backend"
|
|
brandColor: "#3BABC3"
|
|
officialUrl: "https://flask.palletsprojects.com"
|
|
relatedIds: ["django", "htmx", "express"]
|
|
date: "2026-03-28"
|
|
---
|
|
|
|
Add the Pulse script to your Jinja2 base template with a debug guard.
|
|
|
|
---
|
|
|
|
## Add to your base template
|
|
|
|
Use Jinja2's conditional to only load the script when `DEBUG` is off.
|
|
|
|
```html filename="templates/base.html"
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{% if not config.DEBUG %}
|
|
<script
|
|
defer
|
|
data-domain="your-site.com"
|
|
src="https://pulse.ciphera.net/script.js"
|
|
></script>
|
|
{% endif %}
|
|
|
|
<title>{% block title %}My Flask App{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
For more details, see the [Flask template docs](https://flask.palletsprojects.com/en/stable/patterns/templateinheritance/).
|