2023-08-03 20:50:43 +00:00
|
|
|
{% apply remove_whitespace %}
|
2013-07-18 15:34:04 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
2017-03-03 06:20:07 +00:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2013-12-25 16:46:13 +00:00
|
|
|
<script type='text/javascript'>
|
2016-05-05 12:38:24 +00:00
|
|
|
var active_page = "catalog"
|
2021-01-18 22:30:21 +00:00
|
|
|
, board_name = "{{ board.uri }}";
|
2013-12-25 16:46:13 +00:00
|
|
|
</script>
|
2021-01-18 22:30:21 +00:00
|
|
|
<title>{{ settings.title }} ( /{{ board.title|e }}/ )</title>
|
2013-12-25 16:46:13 +00:00
|
|
|
{% include 'header.html' %}
|
2013-07-18 15:34:04 +00:00
|
|
|
</head>
|
2015-09-25 15:17:05 +00:00
|
|
|
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} theme-catalog active-catalog" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
|
2016-01-09 01:33:09 +00:00
|
|
|
<div class="top bar topbar">
|
2014-11-13 00:30:36 +00:00
|
|
|
{{ boardlist.top }}
|
|
|
|
</div>
|
2013-07-18 15:34:04 +00:00
|
|
|
<header>
|
2021-01-18 22:30:21 +00:00
|
|
|
<h1 class="glitch" data-text="{{ settings.title }} /{{ board.title|e }}/"> {{ settings.title }} (<a href="{{link}}">/{{ board.title|e }}/</a>)</h1>
|
2013-07-18 15:34:04 +00:00
|
|
|
<div class="subtitle">{{ settings.subtitle }}</div>
|
|
|
|
</header>
|
2021-01-18 22:30:21 +00:00
|
|
|
{% if not no_post_form %}
|
|
|
|
<center><a href="#" id="post-form-opener">[ {% trans 'Create new thread' %} ]</a></center>
|
|
|
|
<div id="post-form-container" style="display:none;">
|
|
|
|
{% include 'post_form.html' %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2015-03-26 20:43:26 +00:00
|
|
|
<div class="controls">
|
|
|
|
<ul style="display: none">
|
|
|
|
<li id="sort-bump-order" class="sort" data-sort="data-bump" data-order="asc">{% trans 'Bump order' %}</li>
|
|
|
|
<li id="sort-creation-date" class="sort" data-sort="data-time" data-order="asc">{% trans 'Creation date' %}</li>
|
|
|
|
<li id="sort-reply-count" class="sort" data-sort="data-reply" data-order="asc">{% trans 'Reply count' %}</li>
|
|
|
|
<li id="sort-random" class="sort" data-sort="random">{% trans 'Random' %}</li>
|
|
|
|
</ul>
|
2015-03-26 20:39:01 +00:00
|
|
|
|
2015-03-26 20:43:26 +00:00
|
|
|
<span>{% trans 'Sort by' %}: </span>
|
|
|
|
<select id="sort_by" style="display: inline-block">
|
2017-01-12 18:37:43 +00:00
|
|
|
<option selected value="bump:desc">{% trans 'Bump order' %}</option>
|
|
|
|
<option value="time:desc">{% trans 'Creation date' %}</option>
|
|
|
|
<option value="reply:desc">{% trans 'Reply count' %}</option>
|
2015-03-26 20:43:26 +00:00
|
|
|
<option value="random">{% trans 'Random' %}</option>
|
|
|
|
</select>
|
2015-03-26 20:39:01 +00:00
|
|
|
|
2015-03-26 20:43:26 +00:00
|
|
|
<span>{% trans 'Image size' %}: </span>
|
|
|
|
<select id="image_size" style="display: inline-block">
|
|
|
|
<option value="vsmall">{% trans 'Very small' %}</option>
|
|
|
|
<option selected value="small">{% trans 'Small' %}</option>
|
|
|
|
<option value="large">{% trans 'Large' %}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2016-12-10 09:33:52 +00:00
|
|
|
<br></br>
|
2014-04-29 22:13:04 +00:00
|
|
|
<div class="threads">
|
2014-10-22 04:06:34 +00:00
|
|
|
<div id="Grid">
|
2014-04-29 22:13:04 +00:00
|
|
|
{% for post in recent_posts %}
|
2014-10-22 04:06:34 +00:00
|
|
|
<div class="mix"
|
2021-01-12 18:32:08 +00:00
|
|
|
data-reply="{{ post.replies }}"
|
2014-10-22 04:06:34 +00:00
|
|
|
data-bump="{{ post.bump }}"
|
|
|
|
data-time="{{ post.time }}"
|
2015-02-01 07:30:59 +00:00
|
|
|
data-id="{{ post.id }}"
|
2015-03-06 10:01:53 +00:00
|
|
|
data-sticky="{% if post.sticky %}true{% else %}false{% endif %}"
|
|
|
|
data-locked="{% if post.locked %}true{% else %}false{% endif %}"
|
2014-08-08 20:48:38 +00:00
|
|
|
>
|
2023-08-15 05:44:10 +00:00
|
|
|
<div class="thread grid-li grid-size-small">
|
2021-01-18 22:30:21 +00:00
|
|
|
<a href="{{post.link}}">
|
2014-05-05 15:29:34 +00:00
|
|
|
{% if post.youtube %}
|
2021-04-02 23:39:42 +00:00
|
|
|
<img src="/vi/{{ post.youtube }}/0.jpg"
|
2014-05-05 15:29:34 +00:00
|
|
|
{% else %}
|
2021-01-18 22:30:21 +00:00
|
|
|
<img src="{{post.file}}"
|
2014-05-05 15:29:34 +00:00
|
|
|
{% endif %}
|
2015-01-23 10:29:55 +00:00
|
|
|
id="img-{{ post.id }}" data-subject="{% if post.subject %}{{ post.subject|e }}{% endif %}" data-name="{{ post.name|e }}" data-muhdifference="{{ post.muhdifference }}" class="{{post.board}} thread-image" title="{{post.bump|date('%b %d %H:%M')}}">
|
2014-04-29 22:13:04 +00:00
|
|
|
</a>
|
2015-01-23 10:29:55 +00:00
|
|
|
<div class="replies">
|
2021-01-18 03:31:06 +00:00
|
|
|
<strong>R: {{ post.replies }} / I: {{ post.images }}{% if post.sticky %} (sticky){% endif %}{% if post.sage %} (sage){% endif %}{% if (config.reply_limit > 0) and (post.replies >= config.reply_limit) %} (full){% endif %}{% if post.locked %} <span class="fa fa-lock"> </span>{% endif %}</strong>
|
2015-01-23 10:29:55 +00:00
|
|
|
{% if post.subject %}
|
|
|
|
<p class="intro">
|
|
|
|
<span class="subject">
|
|
|
|
{{ post.subject|e }}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<br />
|
|
|
|
{% endif %}
|
2015-01-24 21:35:22 +00:00
|
|
|
|
2015-01-23 10:29:55 +00:00
|
|
|
{{ post.body }}
|
|
|
|
</div>
|
2014-04-29 22:13:04 +00:00
|
|
|
</div>
|
2023-08-15 05:44:10 +00:00
|
|
|
</div>
|
2014-04-29 22:13:04 +00:00
|
|
|
{% endfor %}
|
2014-10-22 04:06:34 +00:00
|
|
|
</div>
|
2014-04-29 22:13:04 +00:00
|
|
|
</div>
|
2021-01-18 22:30:21 +00:00
|
|
|
|
2013-07-18 15:34:04 +00:00
|
|
|
<hr/>
|
2014-04-20 00:27:54 +00:00
|
|
|
<footer>
|
2021-07-21 23:58:23 +00:00
|
|
|
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="https://github.com/savetheinternet/Tinyboard">Tinyboard</a> +
|
|
|
|
<a href='https://github.com/vichan-devel/vichan'>vichan</a> +
|
|
|
|
<a href='https://github.com/lainchan/lainchan'>lainchan</a> {{ config.version }} -
|
|
|
|
<br><a href="https://github.com/savetheinternet/Tinyboard">Tinyboard</a> Copyright © 2010-2014 Tinyboard Development Group
|
|
|
|
<br><a href="https://github.com/vichan-devel/vichan">vichan</a> Copyright © 2012-2016 vichan-devel
|
|
|
|
<br><a href="https://github.com/lainchan/lainchan">lainchan</a> Copyright © 2014-2017 lainchan Administration</p>
|
2014-04-20 00:27:54 +00:00
|
|
|
</footer>
|
2017-04-27 16:16:56 +00:00
|
|
|
<div class="pages"></div>
|
2014-10-05 15:49:27 +00:00
|
|
|
|
2023-08-03 01:31:45 +00:00
|
|
|
<script type="text/javascript">{% verbatim %}
|
2015-03-26 20:39:01 +00:00
|
|
|
ready();
|
2023-08-03 01:31:45 +00:00
|
|
|
{% endverbatim %}</script>
|
2013-07-18 15:34:04 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
2023-08-03 20:50:43 +00:00
|
|
|
{% endapply %}
|