- rebrand from 습관 트래커 to 해빗랩 across templates, manifest, service worker - add HTTPS redirect middleware for reverse-proxied deployments - add public landing page (/) and privacy policy page with real data handling disclosures - add in-app account deletion (Apple review requirement) - add Android TWA Digital Asset Links support (/.well-known/assetlinks.json) - add SFTP deployment script for the Synology-hosted server Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
9 lines
232 B
HTML
9 lines
232 B
HTML
{% extends "base.html" %}
|
|
{% block title %}오늘 · 해빗랩{% endblock %}
|
|
{% block nav_today %}active{% endblock %}
|
|
{% block content %}
|
|
<div id="today-content">
|
|
{% include "partials/today_content.html" %}
|
|
</div>
|
|
{% endblock %}
|