17 lines
529 B
HTML
17 lines
529 B
HTML
{% 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 %}
|