You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
2.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href=" {% static 'bootstrap5/bootstrap.min.css' %}">
<script src=" {% static 'bootstrap5/popper.min.js' %}"></script>
<script src=" {% static 'bootstrap5/bootstrap.min.js' %}"></script>
<link rel="stylesheet" href=" {% static 'css/base.css' %}">
{% block head %}{% endblock %}
</head>
<body>
<header class="p-3 text-bg-secondary border-bottom mb-3">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
<img src="{% static 'image/logo1.png' %}" alt="">
</a>
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="#" class="nav-link px-2 text-white">论坛首页</a></li>
<li><a href="#" class="nav-link px-2 text-white">发布</a></li>
<li><a href="#" class="nav-link px-2 text-white">Pricing</a></li>
<li><a href="#" class="nav-link px-2 text-white">FAQs</a></li>
<li><a href="#" class="nav-link px-2 text-white">About</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
<input type="search" class="form-control form-control-dark text-white" placeholder="搜索..."
aria-label="Search" _mstplaceholder="99723" _mstaria-label="74607">
</form>
<div class="text-end">
<button type="button" class="btn btn-outline-light me-2">登录</button>
<button type="button" class="btn btn-outline-light me-2">注册</button>
</div>
</div>
</div>
</header>
<main class="container bg-white p-3 rounded">
{% block main %}{% endblock %}
</main>
</body>
</html>