{% extends "base.html" %} {% block title %}About - Live Reload Demo{% endblock %} {% block content %}

About Live Reload

What is Live Reload?

Live reload is a development feature that automatically refreshes the browser when template files are modified. This eliminates the need to manually refresh the page during development.

How it Works:

  1. The application watches template directories for file changes
  2. When a change is detected, it triggers a reload
  3. The browser automatically refreshes to show the updated content
Benefits:
Technical Details:
- Uses watchdog library for file system monitoring
- Supports multiple template directories
- Debounced file change detection
- WebSocket-based browser communication
{% endblock %}