forked from hornet/wirechan
19 lines
No EOL
451 B
HTML
19 lines
No EOL
451 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<div class="link-container">
|
|
<h2>{{ header }}</h2>
|
|
<p>{{ content }}</p>
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html> |