This repository has been archived on 2020-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
photo/templates/photo/photos.html

51 lines
1.4 KiB
HTML

<!DOCTYPE html>
{% load static %}
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>小令童鞋相册</title>
<link rel="stylesheet" href="{% static 'css/reset.css' %}">
<link rel="stylesheet" href="{% static 'css/style.css' %}" media="screen" type="text/css" />
</head>
<body>
<div class="content">
<div class="brief"> </div>
{% for photo in data %}
<ul class="gallery">
<li class="portrait">
<span class="date">{{ photo.name }}</span>
<a href="{% url 'photo' %}?name={{ photo.fold }}">
<img class="pic" src="{% static '/' %}{{ photo.pic }}" alt="BINGOO" />
</a>
<div class="foot">
<span class="entypo-comment comment">{{ photo.des }}</span>
</div>
</li>
{% endfor %}
</div>
<div class="carrousel">
<span class="close entypo-cancel"></span>
<span class="entypo-arrows-ccw loanding"> Loading large photo</span>
<div class="wrapper">
<img src="" alt="BINGOO" />
</div>
</div>
<script src="{% static 'js/jquery.js' %}"></script>
<!--
<script src="{% static 'js/index.js' %}"></script>
-->
<div style="text-align:center;clear:both;">
<!--
<script src="/gg_bd_ad_720x90.js" type="text/javascript"></script>
<script src="/follow.js" type="text/javascript"></script>
-->
</div>
</body>
</html>