initial: novel-app snapshot

This commit is contained in:
omo
2026-08-17 17:11:30 +08:00
commit 1ae06209ac
34 changed files with 2821 additions and 0 deletions

16
templates/index.html Normal file
View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block title %}首页 - Novel Writer{% endblock %}
{% block content %}
<div class="d-flex justify-content-between align-items-center mb-4">
<h1 class="mb-0">我的小说</h1>
<a class="btn btn-primary" href="/deconstruct">+ 拆书创建新小说</a>
</div>
<div class="row g-3" id="novelCards">
<div class="text-muted">加载中…</div>
</div>
{% endblock %}
{% block scripts %}
<script type="module" src="{{ url_for('static', filename='js/pages/index.js') }}"></script>
{% endblock %}