Files
msys2-web/app/templates/mirrors.html
2021-06-30 17:29:20 +02:00

19 lines
335 B
HTML

{% extends "layout.html" %}
{% block title %}Mirrors{% endblock %}
{% block inner_content %}
<style>
iframe {
width: 100%;
height: calc(100vh - 8rem);
}
</style>
<div class="card">
<div class="overflow-auto">
<iframe src="https://mirror.msys2.org/?mirrorstats"></iframe>
</div>
</div>
{% endblock %}