| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {% load staticfiles %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>新闻详情</title>
- <link rel="stylesheet" href="{% static '/lib/font/fontIcon/iconfont.css' %}">
- <link rel="stylesheet" href="{% static '/lib/css/reset.css' %}">
- <link rel="stylesheet" href="{% static '/lib/layui/css/layui.css' %}">
- <link rel="stylesheet" href="{% static '/css/common.css' %}">
- <link rel="stylesheet" href="{% static '/css/module.css' %}">
- <link rel="stylesheet" href="{% static '/css/allDetail.css' %}">
- <style>
- .advImg {
- background: url(../static/imgs/newsAdv.jpg) no-repeat center;
- }
- </style>
- </head>
- <body>
- <div class="header">
- <div class="headerTxt">
- <div class="wrapper">
- <p class="logoNameCn">休闲农业旅游网</p>
- <p class="logoNameEn">Leisure agricultural tourism network</p>
- </div>
- </div>
- <!-- 广告 -->
- <div class="bjColor advImg"></div>
- </div>
- <!-- 主体部分 -->
- <div class="content">
- <div class="wrapper">
- <div class="newsDiv">
- <!-- 面包屑导航 -->
- <div class="breadcrumb">
- <span class="layui-breadcrumb">
- <a href="home">首页</a>
- <a href="newslist_view?page=1&type={{art.art_type}}">新闻资讯</a>
- <a>
- <cite>详情</cite>
- </a>
- </span>
- </div>
- <!-- 新闻详情 -->
- <div class="innerDiv">
- <div class="detailPageDiv">
- <h1>{{art.title}}</h1>
- <div class="time">{{ art.upl_time|date:"Y-m-d"}}</div>
- <div>{{art.content|safe}}</div>
- <div class="sequence">
- {% for news in on_art %}
- {% if forloop.last %}
- <a href="news_view?id={{news.id}}" class="prevBtn">上一篇:{{news.title}}</a>
- {% endif%}
- {% endfor %}
- {% for news in up_art %}
- {% if forloop.first %}
- <a href="news_view?id={{news.id}}" class="nextBtn">下一篇:{{news.title}}</a>
- {% endif%}
- {% endfor %}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 底部版权 -->
- <div class="footer bjColor">
- <div class="wrapper">
- <div class="floatDiv">
- <div class="copyrightTxt">
- <div>休闲农业旅游网</div>
- <div>联系人:李四 联系电话:13811111111</div>
- <div>地址:河南省郑州市XXXXXXXXXXXXXXXXXXXXXXXXXX</div>
- </div>
- <div class="WeChatCode">
- <img src="{% static '/imgs/WeChatCode.jpg' %}" alt="">
- <p>关注公众号</p>
- </div>
- </div>
- <div class="copyright">
- 版权所有XXXXXXXXXXXXXXXXXXXXXX
- </div>
- </div>
- </div>
- <script src="{% static '/lib/js/jquery-2.1.4.min.js'%}"></script>
- <script src="{% static '/lib/layui/layui.js'%}"></script>
- <script src="{% static '/js/newsList.js'%}"></script>
- </body>
- </html>
|