123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {% extends 'base.html' %}
- {% block titleBlock %}
- 文章详情页
- {% endblock %}
- {% block scriptBlock %}
- <script type="text/javascript" src="../../static/news/js/detail.js"></script>
- {% endblock %}
- {% block headerBlock %}
- <ul class="menu fl">
- {% for category in data.categories %}
- <li class="{% if loop.index0 == 0 %}active{% endif %}" data-cid="{{ category.id }}">
- <a href="javascript:;">{{ category.name }}</a>
- </li>
- {% endfor %}
- </ul>
- {% endblock %}
- {% block contentBlock %}
- <div class="detail_con fl">
- <h3>{{ data.news.title }}</h3>
- <div class="detail_about clearfix">
- <span class="time_souce fl">{{ data.news.create_time }} 来源: {{ data.news.source }}</span>
- <span class="comment fr">{{ data.news.comments_count }}</span>
- </div>
- {# safe表明内容是安全的需要解析输出 #}
- {{ data.news.content | safe }}
- <a href="javascript:;" class="collected block-center" data-newsid="{{ data.news.id }}"
- style="display: {% if data.is_collected %} block
- {% else %} none {% endif %};"><span class="out">已收藏</span><span class="over">取消收藏</span></a>
- <a href="javascript:;" class="collection block-center" data-newsid="{{ data.news.id }}"
- style="display: {% if data.is_collected %} none
- {% else %} block {% endif %};">收藏</a>
- {% if data.user_info %}
- <form action="" class="comment_form" data-newsid="{{ data.news.id }}">
- <div class="person_pic">
- <img src="../../static/news/images/cat.jpg" alt="用户图标">
- </div>
- <textarea placeholder="请发表您的评论" class="comment_input"></textarea>
- <input type="submit" name="" value="评 论" class="comment_sub">
- </form>
- {% else %}
- <div class="comment_form_logout">
- 登录发表你的评论
- </div>
- {% endif %}
- <div class="comment_count">
- {{ data.news.comments_count }}条评论
- </div>
- <div class="comment_list_con">
- {% for comment in data.comments %}
- <div class="comment_list">
- <div class="person_pic fl">
- <img src="{% if comment.user.avatar_url %}
- {{ comment.user.avatar_url }}
- {% else %}
- ../../static/news/images/person01.png
- {% endif %}" alt="用户图标">
- </div>
- <div class="user_name fl">{{ comment.user.nick_name }}</div>
- <div class="comment_text fl">{{ comment.content }}</div>
- {% if comment.parent %}
- <div class="reply_text_con fl">
- <div class="user_name2">{{ comment.parent.user.nick_name }}</div>
- <div class="reply_text">
- {{ comment.parent.content }}
- </div>
- </div>
- {% endif %}
- <div class="comment_time fl">{{ comment.create_time }}</div>
- <a href="javascript:;" class="comment_up
- {% if comment.is_like %}
- has_comment_up
- {% endif %} fr"
- data-commentid="{{ comment.id }}"
- data-likecount="{{ comment.like_count }}"
- data-newsid="{{ data.news.id }}">
- {% if comment.like_count > 0 %}
- {{ comment.like_count }}
- {% else %}
- 赞
- {% endif %}</a>
- <a href="javascript:;" class="comment_reply fr">回复</a>
- <form class="reply_form fl" data-commentid="{{ comment.id }}" data-newsid="{{ data.news.id }}">
- <textarea class="reply_input"></textarea>
- <input type="button" value="回复" class="reply_sub fr">
- <input type="reset" name="" value="取消" class="reply_cancel fr">
- </form>
- </div>
- {% endfor %}
- </div>
- </div>
- {% endblock %}
- {% block authorBlock %}
- <div class="author_card">
- <a href="#" class="author_pic"><img src="../../static/news/images/user_pic.png" alt="author_pic"></a>
- <a href="#" class="author_name">张大山</a>
- <div class="author_resume">张大山的简介,张大山</div>
- <div class="writings"><span>总篇数</span><b>23</b></div>
- <div class="follows"><span>粉丝</span><b>36</b></div>
- <a href="javascript:;" class="focus fr">关注</a>
- <a href="javascript:;" class="focused fr"><span class="out">已关注</span><span class="over">取消关注</span></a>
- </div>
- {% endblock %}
|