initial: novel-app snapshot
This commit is contained in:
16
templates/index.html
Normal file
16
templates/index.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user