mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-02 04:37:35 +03:00
20 lines
387 B
HTML
20 lines
387 B
HTML
{% extends "base.html" %}
|
|
{% import "utils.html" as utils %}
|
|
|
|
{% block title %}Info: {{ msg }}{% endblock %}
|
|
{% block sortstyle %}{% endblock %}
|
|
|
|
{% block subscriptions %}
|
|
{% call utils::sub_list("") %}
|
|
{% endblock %}
|
|
|
|
{% block search %}
|
|
{% call utils::search("".to_owned(), "") %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="error">
|
|
<h2>{{ msg }}</h2>
|
|
<br />
|
|
</div>
|
|
{% endblock %}
|