16 lines
300 B
HTML
16 lines
300 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}About Krll{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="{{ url_for('static', path='/rule/style.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<section>
|
|
{{ rule|safe }}
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|