mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
95 lines
3.4 KiB
HTML
95 lines
3.4 KiB
HTML
---
|
|
permalink: /
|
|
---
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
{% include nav.html %}
|
|
|
|
<div id="mirrors">
|
|
<div class="spacing hidden-xs"></div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 table-responsive">
|
|
<h3><span class="fa fa-cube"></span> 镜像列表 </h3>
|
|
<table class="table">
|
|
<thead>
|
|
<tr class="row">
|
|
<th class="col-sm-8">Name</th>
|
|
<th class="col-sm-4">Last Update</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="mirror-list">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="spacing hidden-xs"></div>
|
|
<div id="news">
|
|
<h4><span class="fa fa-bullhorn"></span> 新闻公告 </h4>
|
|
<ul>
|
|
{% for news in site.categories.news limit: 3%}
|
|
<li><a href="/news/#{{news.slug}}"><strong>{{news.date | date: "%Y-%m-%d"}}</strong> {{news.title}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="text-right"><a href="/news/"> more <span class="fa fa-angle-double-right"></span> </a></div>
|
|
</div>
|
|
<div>
|
|
<h4> <span class="fa fa-link"></span> 域名选择 </h4>
|
|
<ul>
|
|
<li><a href="https://mirrors.tuna.tsinghua.edu.cn/">https://mirrors.tuna.tsinghua.edu.cn/</a> 自动选择 </li>
|
|
<li><a href="https://mirrors6.tuna.tsinghua.edu.cn/">https://mirrors6.tuna.tsinghua.edu.cn/</a> 只解析 IPv6</li>
|
|
<li><a href="https://mirrors4.tuna.tsinghua.edu.cn/">https://mirrors4.tuna.tsinghua.edu.cn/</a> 只解析 IPv4</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4> <span class="fa fa-envelope-o"></span> 联系我们 </h4>
|
|
<ul>
|
|
<li><strong>意见反馈</strong> <br /> <a href="https://github.com/tuna/issues">https://github.com/tuna/issues</a></li>
|
|
<li><strong>发送邮件</strong> <br /> <a id="eib1gieB"></a></li>
|
|
<li><strong>在线交流</strong> <br /> <a href="https://fishroom.tuna.moe/log/tuna/today"> #tuna at freenode </a></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4> <span class="fa fa-external-link"></span> 相关链接 </h4>
|
|
<ul>
|
|
<li><a href="/help/">使用帮助</a></li>
|
|
<li><a href="/status/#server-status">服务器状态</a></li>
|
|
<li><a href="/status/#syncing-status">同步状态</a></li>
|
|
<li><a href="https://tuna.moe/">清华大学 TUNA 协会</a></li>
|
|
<li><a href="https://github.com/tuna/tunasync">镜像管理器源码</a></li>
|
|
<li><a href="https://github.com/tuna/tunasync-scripts">自定义镜像脚本</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!--/container -->
|
|
</div><!--/mirrors -->
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
{% raw %}
|
|
<script id="template" type="x-tmpl-markup">
|
|
{{mirrors}}
|
|
{{if is_master}}
|
|
<tr class="status-{{status}} row">
|
|
<td class="col-md-8">
|
|
<a class="mirror-item-label" data-toggle="popover" data-trigger="hover" data-placement="right" data-content="{{if description}}{{description}}{{/if}}" href="{{if url}}{{url}}{{else}}/{{name}}{{/if}}">{{name}}</a>
|
|
{{if is_new}}<span class="label label-new">new</span>{{/if}}
|
|
{{if help_url}}<a href="{{help_url}}"><i class="fa fa-question-circle" title="Help"></i></a>{{/if}}
|
|
</td>
|
|
<td class="col-md-4">
|
|
{{last_update}} {{if show_status}}<span class="label label-status {{label}} hidden-xs">{{status}}</span>{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/if}}
|
|
{{/mirrors}}
|
|
</script>
|
|
{% endraw %}
|
|
<script src="/static/js/index.js"></script>
|
|
</html>
|
|
<!--
|
|
vim: ts=2 sts=2 sw=2 noexpandtab
|
|
-->
|