mirror of
https://0xacab.org/johnxina/rat.git
synced 2024-12-23 13:09:08 +00:00
50 lines
2.1 KiB
Plaintext
50 lines
2.1 KiB
Plaintext
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>{{ info.thread.title }} - {{ info.thread.fname }}吧 - RAT</title>
|
||
</head>
|
||
<body>
|
||
<pre>
|
||
------------------------------------------------------------------------
|
||
<a href="/f?kw={{ info.forum.fname }}">[{{ info.forum.fname }}吧]</a> {{ info.thread.title|twrap(width=60) }}
|
||
------------------------------------------------------------------------
|
||
|
||
<a {% if not ao %} class="current-sel" {% endif %} href="/p/{{ info.thread.tid }}?ao=0">[全部回复]</a> <a {% if ao %} class="current-sel" {% endif %} href="/p/{{ info.thread.tid }}?ao=1">[仅看楼主]</a></pre>
|
||
{% for p in info %}
|
||
<pre>
|
||
<a href="#{{ p.floor }}">#{{ p.floor }}</a> | <a href="/home/main?id={{ p.user.user_id }}">{{ p.user.show_name }}</a>:
|
||
|
||
{{ p.text|twrap(rws=True) }}
|
||
{% if p.comments %}{{ '\n' + p.comments|tcomments }}{% endif %}</pre>
|
||
{% endfor %}
|
||
<pre>------------------------------------------------------------------------</pre>
|
||
<a href="/p/{{ info.thread.tid }}&ao={{ao}}">首页</a> |
|
||
|
||
{% for i in range(5) %}
|
||
{% set np = info.page.current_page - 5 + i %}
|
||
{% if np > 0 %}
|
||
<a href="/p/{{ info.thread.tid }}?pn={{ np }}&ao={{ao}}">{{ np }}</a> |
|
||
{% endif %}
|
||
{% endfor %}
|
||
|
||
<strong>{{ info.page.current_page }}</strong> |
|
||
|
||
{% for i in range(5) %}
|
||
{% set np = info.page.current_page + 1 + i %}
|
||
{% if np <= info.page.total_page %}
|
||
<a href="/p/{{ info.thread.tid }}?pn={{ np }}&ao={{ao}}">{{ np }}</a> |
|
||
{% endif %}
|
||
{% endfor %}
|
||
|
||
<a href="/p/{{ info.thread.tid }}?pn={{ info.page.total_page }}&ao={{ao}}">尾页</a>
|
||
<pre>
|
||
------------------------------------------------------------------------
|
||
<a href="/">RAT Ain't Tieba</a> <a href="https://0xacab.org/johnxina/rat/-/raw/no-masters/LICENSE">自豪地以 AGPLv3 释出</a> <a href="https://0xacab.org/johnxina/rat">源代码</a>
|
||
------------------------------------------------------------------------
|
||
</pre>
|
||
</body>
|
||
</html>
|