83 lines
2.4 KiB
HTML
83 lines
2.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<html lang="zh-CN" class="mdui-theme-auto">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"/>
|
||
|
<meta name="renderer" content="webkit"/>
|
||
|
|
||
|
<link rel="stylesheet" href="https://unpkg.com/mdui@2/mdui.css">
|
||
|
<script src="https://unpkg.com/mdui@2/mdui.global.js"></script>
|
||
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||
|
|
||
|
<title>Topics -- from {{ topics.form_forum }}</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<mdui-top-app-bar style="position: relative;">
|
||
|
<mdui-button-icon id="open-drawer" icon="menu"></mdui-button-icon>
|
||
|
<mdui-top-app-bar-title>Posts</mdui-top-app-bar-title>
|
||
|
<div style="flex-grow: 1"></div>
|
||
|
</mdui-top-app-bar>
|
||
|
|
||
|
<mdui-navigation-drawer close-on-overlay-click modal close-on-esc id="navi-drawer">
|
||
|
<mdui-list>
|
||
|
|
||
|
{% for forum in forums %}
|
||
|
|
||
|
<mdui-list-item
|
||
|
headline="{{ forum.name }}"
|
||
|
end-icon="arrow-right"
|
||
|
href="{{ forum.url }}">
|
||
|
</mdui-list-item>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</mdui-list>
|
||
|
</mdui-navigation-drawer>
|
||
|
|
||
|
<script>
|
||
|
const navigationDrawer = document.querySelector("#navi-drawer");
|
||
|
const openButton = document.querySelector("#open-drawer")
|
||
|
|
||
|
openButton.addEventListener("click", () => navigationDrawer.open = true);
|
||
|
</script>
|
||
|
<mdui-button variant="text" href="{{ topics.from_url }}">Back</mdui-button>
|
||
|
<mdui-list>
|
||
|
|
||
|
{% for topic in topics.topics %}
|
||
|
|
||
|
<mdui-list-item>
|
||
|
<div slot="custom">
|
||
|
|
||
|
<h3>{{ topic.id }}<a href="{{ topic.url }}">{{ topic.name }}</a></h3>
|
||
|
|
||
|
<span>Time: {{ topic.time }}</span>
|
||
|
|
||
|
</div>
|
||
|
</mdui-list-item>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</mdui-list>
|
||
|
<div style="width:100%;">
|
||
|
<span style="display:block;text-align:center">{{ page.now }} / {{ page.count }}页</span>
|
||
|
<div style="display:flex">
|
||
|
<mdui-button href="{{ page.first_url }}" icon="first-page">第一页</mdui-button>
|
||
|
{% if page.prev_url != "" %}
|
||
|
<mdui-button href="{{ page.prev_url }}" icon="arrow-back">上一页</mdui-button>
|
||
|
{% endif %}
|
||
|
|
||
|
<div style="flex-grow:1"></div>
|
||
|
|
||
|
{% if page.next_url != "" %}
|
||
|
<mdui-button href="{{ page.next_url }}" end-icon="arrow-forward">下一页</mdui-button>
|
||
|
{% endif %}
|
||
|
<mdui-button href="{{ page.end_url }}" end-icon="last-page">最后一页</mdui-button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|