22 lines
832 B
HTML
22 lines
832 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}新闻中心{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
|
|
<nav aria-label="breadcrumb" style="margin-left: -10px;">
|
|
<ol class="breadcrumb" style="background-color: transparent !important;padding-bottom: 0;">
|
|
<li class="breadcrumb-item"><a href="#">网站首页</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">信息公开</li>
|
|
</ol>
|
|
</nav>
|
|
<div style="margin: 0 5px;">
|
|
{% for section in sections %}
|
|
<div class="row" style="margin: auto auto 15px;">
|
|
{% include 'components/_news_card.html' with data=section.data unique_id=section.key %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |