Bootstrap未命中HTML。 我使用Flat UI的Bootstrap。 我在寫的index.html像Bootstrap未命中HTML
{% load staticfiles %}
<html lang="ja">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="{% static './bootflat.github.io/bootflat/css/bootflat.min.css' %}">
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<style>
body {
padding-top: 70px;
}
.my-form {
width: 640px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.my-form {
width: 100%;
}
}
.errorlist li {
list-style-type: none;
}
.errorlist {
color: red;
margin-left: 0;
padding-left: 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<p class="navbar-text">Hello</p>
{% if user.is_authenticated %}
<p class="navbar-text">{{ user.get_username }}</p>
{% endif %}
</div>
</nav>
<div class="container">
{% block content %}
{% endblock %}
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
</body>
</html>
我指定具有平板UI像<link rel="stylesheet" href="{% static './bootflat.github.io/bootflat/css/bootflat.min.css' %}">
,但設計是不是changed.I訪問http://localhost:8000/static/bootflat.github.io/bootflat/css/bootflat.min.css,but找不到網頁文件夾路徑(404)請求方法:GET請求URL錯誤發生。所以我認爲路徑是錯誤的。 目錄結構
的index.html是accounts.accounts文件夾結構
什麼是錯在我的代碼?我應該怎樣解決這個問題?
首先遵循一些教程,瞭解django項目的結構。 –