为了账号安全,请及时绑定邮箱和手机立即绑定

django运行后无法显示HTML文件内div内模块的内容

如题

我在HTML文件中使用div模块,但是这个模块里的内容runserver后无法显示

代码如下:

<body>
<div class="header">
    <h1 align="center">我的博客</h1>
</div>
<h3 style="margin-bottom: -50px;font-size: x-large;">博客列表
</h3>
<hr/>
{% for blog in blogs %}
<div align="center" class="blog">
    <div class="title">
        <a href="{% url 'blog_get_detail' blog.id %}"><h2 align="left">{{ blog.title }}</h2></a>
    </div>

    <div class="info" align="left">
        <span class="category" style="color: #ff9900;">{{ blog.category.name }}</span>
        <span class="author" style="color: #4a86e8;">{{ blog.author }}</span>
        <span class="pub" style="color: #6aa84e">{{ blog.pub }}</span>
    </div>
    <div class="summary">
        {{ blog.content | truncatechars:100 }}
    </div>

</div>
{% endfor %}
</body>


正在回答

1 回答

你url配置了吗?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
django入门与实践
  • 参与学习       65159    人
  • 解答问题       869    个

手把手带你进入Django开发的大门,充分领略Django的魅力

进入课程

django运行后无法显示HTML文件内div内模块的内容

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信