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.
19 lines
543 B
19 lines
543 B
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}
|
|
新闻详情
|
|
{% endblock %}
|
|
{% block content %}
|
|
<link href="{% static 'css/news.css' %}" rel="stylesheet">
|
|
<!-- 主体内容 -->
|
|
<div class="container">
|
|
<div class="model-details-product-title">
|
|
{{mynew.title}}
|
|
<div class="model-foot">发布时间:{{mynew.publishDate|date:"Y-m-d"}}
|
|
浏览次数:{{mynew.views}}</div>
|
|
</div>
|
|
<div class="model-details">
|
|
{{ mynew.description | safe }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |