Files
snek/src/snek/templates/docs.html
T
retoor 83f6dfff47 docs: add API documentation page with code examples for user registration, encryption, and view creation
Add three new files: docs.html template extending base layout with back button and markdown frame, docs.md containing API usage examples for user registration, string encryption, and view classes, and docs.py with DocsHTMLView and DocsMDView handlers rendering the respective templates.
2025-01-24 15:34:02 +00:00

10 lines
200 B
HTML

{% extends "base.html" %}
{% block main %}
<div class="dialog">
<fancy-button size="auto" text="Back" url="/back"></fancy-button>
<html-frame url="/docs.md"></html-frame>
</div>
{% endblock %}