2011-10-05 08:53:43 -04:00
|
|
|
{% filter remove_whitespace %}
|
|
|
|
{# tabs and new lines will be ignored #}
|
|
|
|
<div class="post reply" id="reply_{{ post.id }}">
|
|
|
|
|
|
|
|
<p class="intro"{% if not index %} id="{{ post.id }}"{% endif %}>
|
|
|
|
<input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" />
|
|
|
|
<label for="delete_{{ post.id }}">
|
|
|
|
{% if post.subject|length > 0 %}
|
|
|
|
{# show subject #}
|
|
|
|
<span class="subject">{{ post.subject }}</span>
|
|
|
|
{% endif %}
|
|
|
|
{% if post.email|length > 0 %}
|
|
|
|
{# start email #}
|
|
|
|
<a class="email" href="mailto:{{ post.email }}">
|
|
|
|
{% endif %}
|
|
|
|
<span class="name">{{ post.name }}</span>
|
|
|
|
{% if post.trip|length > 0 %}
|
|
|
|
<span class="trip">{{ post.trip }}</span>
|
|
|
|
{% endif %}
|
|
|
|
{% if post.email|length > 0 %}
|
|
|
|
{# end email #}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if post.capcode|length > 0 %}
|
|
|
|
{# show capcode #}
|
|
|
|
{{ post.capcode|capcode }}
|
|
|
|
{% endif %}
|
|
|
|
{% if post.mod and post.mod|hasPermission(config.mod.show_ip, board.uri) %}
|
|
|
|
[<a style="margin:0;" href="?/IP/{{ post.ip }}">{{ post.ip }}</a>]
|
|
|
|
{% endif %}
|
|
|
|
{{ post.time|date(config.post_date) }}
|
|
|
|
</label>
|
|
|
|
{% if config.poster_ids %}
|
2011-10-09 01:28:49 -04:00
|
|
|
ID: {{ post.ip|poster_id(post.thread) }}
|
2011-10-05 08:53:43 -04:00
|
|
|
{% endif %}
|
2011-10-08 12:17:25 -04:00
|
|
|
<a class="post_no" {% if not index %}onclick="highlightReply({{ post.id }})" {% endif %}href="{{ post.link }}">No.</a>
|
2011-10-05 08:53:43 -04:00
|
|
|
<a class="post_no"
|
|
|
|
{% if not index %}
|
|
|
|
onclick="citeReply({{ post.id }});"
|
|
|
|
{% endif %}
|
|
|
|
href="{% if index %}
|
|
|
|
{{ post.link('q') }}
|
|
|
|
{% else %}
|
|
|
|
javascript:void(0);
|
|
|
|
{% endif %}">
|
|
|
|
{{ post.id }}
|
|
|
|
</a>
|
2011-10-07 05:15:57 -04:00
|
|
|
</p>
|
2011-10-05 08:53:43 -04:00
|
|
|
{% if post.embed %}
|
|
|
|
{{ post.embed }}
|
|
|
|
{% elseif post.file == 'deleted' %}
|
|
|
|
<img src="{{ config.image_deleted }}" alt="" />
|
|
|
|
{% elseif post.file and post.file %}
|
|
|
|
<p class="fileinfo">File: <a href="{{ config.uri_img }}{{ post.file }}">{{ post.file }}</a> <span class="unimportant">
|
|
|
|
(
|
|
|
|
{% if post.thumb == 'spoiler' %}
|
|
|
|
Spoiler Image,
|
|
|
|
{% endif %}
|
|
|
|
{{ post.filesize|filesize }}
|
|
|
|
{% if post.filex and post.filey %}
|
|
|
|
, {{ post.filex}}x{{ post.filey }}
|
|
|
|
{% if config.show_ratio %}
|
|
|
|
, {{ post.ratio }}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% if config.show_filename %}
|
|
|
|
,
|
|
|
|
{% if post.filename|length > config.max_filename_display %}
|
|
|
|
<span title="{{ post.filename }}">{{ post.filename|truncate(config.max_filename_display) }}</span>
|
|
|
|
{% else %}
|
|
|
|
{{ post.filename }}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
)
|
2011-10-07 05:15:57 -04:00
|
|
|
</span>
|
|
|
|
</p>
|
2011-10-05 08:53:43 -04:00
|
|
|
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if this.thumb == 'file' %} class="file"{% endif %}>
|
|
|
|
<img src="
|
|
|
|
{% if post.thumb == 'file' %}
|
|
|
|
{{ config.root }}
|
|
|
|
{% if config.file_icons[post.filename|extension] %}
|
|
|
|
{{ config.file_thumb|sprintf(config.file_icons[post.filename|extension]) }}
|
|
|
|
{% else %}
|
|
|
|
{{ config.file_thumb|sprintf(config.file_icons.default) }}
|
|
|
|
{% endif %}
|
|
|
|
{% elseif post.thumb == 'spoiler' %}
|
|
|
|
{{ config.root }}{{ config.spoiler_image }}
|
|
|
|
{% else %}
|
|
|
|
{{ config.uri_thumb }}{{ post.thumb }}
|
2011-10-07 05:15:57 -04:00
|
|
|
{% endif %}" style="width:{{ post.thumbx }}px;height:{{ post.thumby }}px" alt="" />
|
|
|
|
</a>
|
2011-10-05 08:53:43 -04:00
|
|
|
{% endif %}
|
|
|
|
{{ post.postControls }}
|
|
|
|
<p class="body">
|
|
|
|
{% endfilter %}{% if index %}{{ post.body|truncate_body(post.link) }}{% else %}{{ post.body }}{% endif %}{% filter remove_whitespace %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
{% endfilter %}
|