-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdjango_template.html
71 lines (45 loc) · 1.56 KB
/
django_template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<div id="content-onecol">
<div class="post-235 page type-page hentry" id="post-235">
<!--
<h2><a href="http://cdc-phil.releaseourdata.com/?page_id=235" rel="bookmark" title="Permanent Link to "></a></h2>
-->
<div class="entry" xmlns:dcelements="http://purl.org/dc/elements/1.1/" xmlns:dcam="http://purl.org/dc/dcam/" xmlns:dcterms="http://purl.org/dc/terms/">
<div style="text-align: center; width: 100%; display: block;">
<img style="display: inline-block" src="{{image_urls.lores}}" />
</div>
<p>
<div id="desc">
{{ image.desc|safe }}
</div>
<div id="not_desc">
<h6>Downloads:</h6>
{{image.download_links|safe}}
<!--
<div class="block_datapt">
<ul>
<li>Low Resolution: <a href="{{image_urls.lores}}">ROD server</a>,<a href="{{image.url_to_lores_img}}">CDC server</a></li>
<li>High Resolution: <a href="{{image_urls.hires}}">ROD server</a>, <a href="{{image.url_to_hires_img}}">CDC server</a></li>
<li>Thumbnail: <a href="{{image_urls.thumb}}">ROD server</a>, <a href="{{image.url_to_thumb_img}}">CDC server</a></li>
<li></li>
</ul>
-->
</div>
<p class="datapoint">
<strong class="label">Image Id:</strong>
{{image.id}}
</p>
{% if image.page_permalink%}
<p class="datapoint">
<strong class="label">Original Page Permalink:</strong>
<a href="{{image.page_permalink}}">{{image.page_permalink}}</a>
</p>
{% endif %}
{% if image.their_data %}
{{image.their_data|safe}}
{% endif %}
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>