36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}首頁{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container py-4 mt-4">
|
|
<h1 class="mb-4">Blockchain Wiki</h1>
|
|
<div class="row">
|
|
{% for section in sections %}
|
|
<div class="col-md-6 mb-4">
|
|
<div class="card h-100">
|
|
<div class="card-body">
|
|
<h5 class="card-title">{{ section.title }}</h5>
|
|
{% if section.topics %}
|
|
<div class="list-group list-group-flush">
|
|
{% for topic in section.topics %}
|
|
<div class="list-group-item border-0">
|
|
<h6 class="mb-1">{{ topic.title }}</h6>
|
|
{% if topic.description %}
|
|
<p class="mb-1 small text-muted">{{ topic.description }}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="card-footer bg-transparent">
|
|
<a href="{{ url_for('main.section', section_id=section.id) }}" class="btn btn-primary">了解更多</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|